You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
320 B
16 lines
320 B
9 months ago
|
<?php
|
||
|
/**
|
||
|
* Storage interface.
|
||
|
*/
|
||
|
interface RWMB_Storage_Interface {
|
||
|
/**
|
||
|
* Get value from storage.
|
||
|
*
|
||
|
* @param int $object_id Object id.
|
||
|
* @param string $name Field name.
|
||
|
* @param array $args Custom arguments..
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function get( $object_id, $name, $args = [] );
|
||
|
}
|