# shiftcontroller/4.9.24/hc3/_interface/icrud.php

ShiftController Employee Shift Scheduling, version 4.9.24. 14 lines.

- Page: https://pluginprobe.com/plugins/shiftcontroller/4.9.24/code/hc3/_interface/icrud.php
- Raw: https://pluginprobe.com/plugins/shiftcontroller/4.9.24/raw/hc3/_interface/icrud.php
- Modified: 2018-04-25T09:41:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shiftcontroller/4.9.24/code/hc3/_interface/icrud.php#L10-L20`.

```php
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly
interface HC3_ICrud
{
	public function count( $args = array() );
	public function create( $array );
	public function read( $args = array() );
	public function update( $id, $array );
	public function delete( $id );
	public function deleteAll();

	public function withMeta();
	public function updateMeta( $id, $array );
}

```
