PK

ADDRLIN : /home/mannonia/www/wp-content/themes/mannoniavocat/inc/classes/
FLL :
Current File : /home/mannonia/www/wp-content/themes/mannoniavocat/inc/classes/presscore-meta-box-storage.class.php

<?php
/**
 * Class that stores theme meta boxes and corresponding logic
 *
 */

class Presscore_Meta_Box {

	/////////////////
	// Properties //
	/////////////////

	/**
	 * Stored meta boxes
	 * @var array
	 */
	private static $meta_boxes = array();

	//////////////
	// Methods //
	//////////////

	/**
	 * Store meta box
	 * @param mixed $meta_box
	 */
	public static function add( $meta_box ) {
		array_push( self::$meta_boxes, $meta_box );
	}

	/**
	 * Returns stored meta boxes
	 * @return mixed Stored meta boxes
	 */
	public static function get_all() {
		return self::$meta_boxes;
	}

}


PK 99