balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

storage.php (394B)


      1 <?php
      2 /**
      3  * Storage interface
      4  *
      5  * @package Meta Box
      6  */
      7 
      8 /**
      9  * Interface RWMB_Storage_Interface
     10  */
     11 interface RWMB_Storage_Interface {
     12 
     13 	/**
     14 	 * Get value from storage.
     15 	 *
     16 	 * @param  int    $object_id Object id.
     17 	 * @param  string $name      Field name.
     18 	 * @param  array  $args      Custom arguments..
     19 	 * @return mixed
     20 	 */
     21 	public function get( $object_id, $name, $args = array() );
     22 }