-
Notifications
You must be signed in to change notification settings - Fork 0
/
dilaz-metabox.php
250 lines (199 loc) · 4.82 KB
/
dilaz-metabox.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<?php
/*
* Plugin Name: Dilaz Metabox
* Plugin URI: https://github.com/Rodgath/Dilaz-Metabox
* Description: Create custom metaboxes for WordPress themes and plugins.
* Author: Rodgath
* Version: 2.5.81
* Author URI: https://github.com/Rodgath
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
||
|| --------------------------------------------------------------------------------------------
|| Metabox
|| --------------------------------------------------------------------------------------------
||
|| @package Dilaz Metabox
|| @subpackage Metabox
|| @version 2.5.81
|| @since Dilaz Metabox 2.0
|| @author Rodgath, https://github.com/Rodgath
|| @copyright Copyright (C) 2017, Rodgath LTD
|| @link https://github.com/Rodgath/Dilaz-Metabox
|| @License GPL-2.0+
|| @License URI http://www.gnu.org/licenses/gpl-2.0.txt
||
*/
defined('ABSPATH') || exit;
/**
* DilazMetabox functions
*/
require_once plugin_dir_path(__FILE__) .'inc/functions.php';
/**
* DilazMetabox defaults
*/
require_once plugin_dir_path(__FILE__) .'inc/defaults.php';
/**
* DilazMetabox main class
*/
if (!class_exists('DilazMetabox')) {
final class DilazMetabox {
/**
* Metabox arguments
*
* @var array
* @since 2.5.82
*/
public $args = array();
/**
* Metabox parameters
*
* @var array
* @since 2.0
*/
private $_params = array();
/**
* All metaboxes
*
* @var array
* @since 2.5.82
*/
public $metaboxes = array();
/**
* Metabox prefix
*
* @var string
* @since 2.0
*/
protected $_prefix;
/**
* The single instance of the class
*
* @var string
* @since 2.0
*/
protected static $_instance = null;
/**
* Main DilazMetabox instance
*
* Make sure only only one instance can be loaded
*
* @since 2.0
* @static
* @see DilazMetabox()
* @return DilazMetabox object - Main instance.
*/
public static function instance() {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self();
}
return self::$_instance;
}
/**
* Cloning is forbidden
*
* @since 2.0
* @return void
*/
public function __clone() {
_doing_it_wrong(__FUNCTION__, __('Cheatin’ huh?', 'dilaz-metabox'), '2.0');
}
/**
* Unserializing instances of this class is forbidden
*
* @since 2.0
* @return void
*/
public function __wakeup() {
_doing_it_wrong(__FUNCTION__, __('Cheatin’ huh?', 'dilaz-metabox'), '2.0');
}
/**
* Contructor method
*
* @since 1.0
* @param array $prefix metabox prefix
*
*/
function __construct($metabox_args) {
do_action('dilaz_metabox_before_load');
$this->args = $metabox_args;
$this->_params = $this->args[0];
$this->metaboxes = $this->args[1];
$this->_prefix = DilazMetaboxFunction::preparePrefix($this->_params['prefix']);
# Hooks
add_action('init', array(&$this, 'init'));
add_action('init', array(&$this, 'metaboxClass'));
do_action('dilaz_metabox_after_load');
}
/**
* Initialize the metabox class
*
* @since 1.0
* @return void
*/
public function metaboxClass() {
if (!class_exists('Dilaz_Meta_Box'))
require_once DILAZ_MB_DIR .'inc/metabox-class.php';
$prefix = $this->_prefix;
$parameters = $this->_params;
$dilaz_meta_boxes = array();
$dilaz_meta_boxes = $this->metaboxes;
$dilaz_meta_boxes = apply_filters('dilaz_meta_box_filter', $dilaz_meta_boxes, $prefix, $parameters);
new Dilaz_Meta_Box($prefix, $dilaz_meta_boxes, $parameters);
}
/**
* Initialize Admin Panel
*
* @since 1.0
* @return void
*/
public function init() {
do_action('dilaz_metabox_before_init');
# Load constants
$this->constants();
# Load parameters
$this->parameters();
# include required files
$this->includes();
do_action('dilaz_metabox_after_init');
}
/**
* Add metabox parameters
*
* @since 1.0
* @return array
*/
public function parameters() {
return $this->_params;
}
/**
* Constants
*
* @since 1.0
* @return void
*/
public function constants() {
@define('DILAZ_MB_URL', plugin_dir_url(__FILE__));
@define('DILAZ_MB_DIR', plugin_dir_path(__FILE__));
@define('DILAZ_MB_IMAGES', DILAZ_MB_URL .'assets/images/');
}
/**
* Includes
*
* @since 1.0
* @return void
*/
public function includes() {
do_action('dilaz_metabox_after_includes');
do_action('dilaz_metabox_before_includes');
}
}
}
/* Add update checker */
require 'inc/update-checker/plugin-update-checker.php';
$dilazMetaboxUpdateChecker = Puc_v4_Factory::buildUpdateChecker(
'https://github.com/Rodgath/Dilaz-Metabox/',
__FILE__,
'dilaz-metabox'
);
$dilazMetaboxUpdateChecker->setBranch('master');