1 | <?php |
||
10 | class RWMetaBox extends RW_Meta_Box |
||
11 | { |
||
12 | public function __construct( $metabox ) |
||
23 | |||
24 | /** |
||
25 | * @param mixed $meta |
||
26 | * @param bool $meta |
||
27 | * @return mixed |
||
28 | * @filter rwmb_field_meta |
||
29 | */ |
||
30 | public function _get_field_meta( $meta, array $field, $saved ) |
||
41 | |||
42 | /** |
||
43 | * @param mixed $meta |
||
44 | * @return array |
||
45 | */ |
||
46 | public function _normalize_field_meta( $meta, array $field ) |
||
59 | |||
60 | /** |
||
61 | * @return void |
||
62 | * @action pollux/settings/init |
||
63 | */ |
||
64 | public function add_meta_boxes() |
||
75 | |||
76 | /** |
||
77 | * @return bool |
||
78 | */ |
||
79 | public function is_edit_screen( $screen = null ) |
||
83 | |||
84 | /** |
||
85 | * @return bool |
||
86 | */ |
||
87 | public function is_saved() |
||
96 | |||
97 | /** |
||
98 | * @param array $metabox |
||
99 | * @return array |
||
100 | */ |
||
101 | public static function normalize( $metabox ) |
||
106 | } |
||
107 |