first commit
This commit is contained in:
26
wp-content/plugins/brizy/admin/cloud/bridge-interface.php
Normal file
26
wp-content/plugins/brizy/admin/cloud/bridge-interface.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Interface Brizy_Admin_Cloud_UploaderInterface
|
||||
*/
|
||||
interface Brizy_Admin_Cloud_BridgeInterface {
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function export( $entity );
|
||||
|
||||
/**
|
||||
* @param $entity
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function import( $entity );
|
||||
|
||||
/**
|
||||
* @param $entity
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function delete( $entity );
|
||||
}
|
||||
Reference in New Issue
Block a user