11 lines
255 B
PHP
11 lines
255 B
PHP
<?php
|
|
|
|
interface Brizy_Admin_Entity_ManagerInterface {
|
|
public function getEntities( $args );
|
|
|
|
public function getEntity( $args );
|
|
|
|
public function createEntity( $uid, $status='publish' );
|
|
|
|
public function deleteEntity( Brizy_Editor_Entity $entity );
|
|
} |