PATH:
home
/
letacommog
/
mcr
/
wp-content
/
themes
/
dt-the7
/
inc
/
classes
<?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; } }
[+]
..
[-] tags.class.php
[edit]
[+]
sliders
[-] presscore-meta-box-field-template.class.php
[edit]
[-] presscore-meta-box-storage.class.php
[edit]
[-] abstract-presscore-ajax-content-builder.php
[edit]
[-] class-presscore-post-type-rewrite-rules-filter.php
[edit]
[+]
layout
[-] class-primary-menu.php
[edit]
[+]
template-config
[-] index.php
[edit]