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 | * @param array $field |
||
51 | * @return array |
||
52 | */ |
||
53 | public function _normalize_field( $field ) |
||
64 | |||
65 | /** |
||
66 | * @param mixed $meta |
||
67 | * @return array |
||
68 | */ |
||
69 | public function _normalize_field_meta( $meta, array $field ) |
||
82 | |||
83 | /** |
||
84 | * @return void |
||
85 | * @action pollux/archives/init |
||
86 | * @action pollux/settings/init |
||
87 | */ |
||
88 | public function add_meta_boxes() |
||
99 | |||
100 | /** |
||
101 | * @return bool |
||
102 | */ |
||
103 | public function is_edit_screen( $screen = null ) |
||
107 | |||
108 | /** |
||
109 | * @return bool |
||
110 | */ |
||
111 | public function is_saved() |
||
120 | |||
121 | /** |
||
122 | * @param array $metabox |
||
123 | * @return array |
||
124 | */ |
||
125 | public static function normalize( $metabox ) |
||
130 | } |
||
131 |