1 | <?php |
||
9 | class RWMetaBox extends RW_Meta_Box |
||
10 | { |
||
11 | protected $pollux_caller; |
||
12 | protected $pollux_id; |
||
13 | |||
14 | public function __construct( $metabox, $id = null, $caller ) |
||
30 | |||
31 | /** |
||
32 | * @param mixed $meta |
||
33 | * @param bool $meta |
||
34 | * @return mixed |
||
35 | * @filter rwmb_field_meta |
||
36 | */ |
||
37 | public function _get_field_meta( $meta, array $field, $saved ) |
||
48 | |||
49 | /** |
||
50 | * @return array |
||
51 | */ |
||
52 | public function _normalize_field( array $field ) |
||
63 | |||
64 | /** |
||
65 | * @param mixed $meta |
||
66 | * @return array |
||
67 | */ |
||
68 | public function _normalize_field_meta( $meta, array $field ) |
||
81 | |||
82 | /** |
||
83 | * @return void |
||
84 | * @action pollux/archives/init |
||
85 | * @action pollux/settings/init |
||
86 | */ |
||
87 | public function add_meta_boxes() |
||
98 | |||
99 | /** |
||
100 | * @return bool |
||
101 | */ |
||
102 | public function is_edit_screen( $screen = null ) |
||
106 | |||
107 | /** |
||
108 | * @return bool |
||
109 | */ |
||
110 | public function is_saved() |
||
119 | |||
120 | /** |
||
121 | * @param array $metabox |
||
122 | * @return array |
||
123 | */ |
||
124 | public static function normalize( $metabox ) |
||
129 | } |
||
130 |