| 1 |
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly |
| 2 |
interface HC3_ICrud |
| 3 |
{ |
| 4 |
public function count( $args = array() ); |
| 5 |
public function create( $array ); |
| 6 |
public function read( $args = array() ); |
| 7 |
public function update( $id, $array ); |
| 8 |
public function delete( $id ); |
| 9 |
public function deleteAll(); |
| 10 |
|
| 11 |
public function withMeta(); |
| 12 |
public function updateMeta( $id, $array ); |
| 13 |
} |
| 14 |
|