-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdilaz-metabox.php
412 lines (322 loc) · 11 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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
<?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: 3.0.0
* 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 3.0.0
|| @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
||
*/
namespace DilazMetabox;
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($metabox_args = array()) {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self($metabox_args);
}
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 = array()) {
do_action('dilaz_metabox_before_load');
$this->args = $metabox_args;
$this->_params = $this->args[0];
$this->metaboxes = $this->args[1];
$this->_prefix = DilazMetaboxFunction\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\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\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');
add_action('wp_head', array($this, 'loadGoogleFonts'));
# 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');
}
/**
* Load Google fonts in frontend
*
* @since 2.5.7
* @return mixed Google fonts head tag code
*/
public function loadGoogleFonts() {
global $wp_query;
if ($wp_query->queried_object_id == null) return;
$savedGoogleFonts = get_post_meta($wp_query->queried_object_id, 'saved_google_fonts', true);
if (empty($savedGoogleFonts)) return FALSE;
$families = array();
$subsets = array();
$font_array = array();
foreach ($savedGoogleFonts as $key => $font) {
if (isset($font['family']) && $font['family'] != '') {
$font_array[$font['family']]['family'] = $font['family'];
if (isset($font['weight']) && in_array($font['weight'], ['100', '200', '300', '400', '500', '600', '700', '800', '900', '100i', '200i', '300i', '400i', '500i', '600i', '700i', '800i', '900i'])) {
$font_style = (isset($font['style']) && $font['style'] != '') ? ($font['style'] == 'italic' ? 'i' : '') : '';
$font_array[$font['family']]['weights'][] = $font['weight'] . $font_style;
}
$font_family = str_replace(' ', '+', $font_array[$font['family']]['family']);
if (isset($font_array[$font['family']]['weights'])) {
asort($font_array[$font['family']]['weights']);
$families[$font_array[$font['family']]['family']] = $font_family . ':' . implode(',', array_unique(array_values($font_array[$font['family']]['weights'])));
}
if (isset($font['subset']) && $font['subset'] != '' && is_array($font['subset'])) {
$subsets = array_merge($subsets, $font['subset']);
}
}
}
if (!empty($families)) {
$query_args = array(
'family' => implode('|', $families),
'display' => 'swap',
);
if (!empty($subsets)) {
$query_args = array_merge($query_args, array('subset' => implode(',', array_values($subsets))));
}
$font_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
?>
<!-- Code snippet to speed up Google Fonts rendering: googlefonts.3perf.com -->
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous">
<link rel="preload" href="<?php echo $font_url; ?>" as="fetch" crossorigin="anonymous">
<script type="text/javascript"> !function(e,n,t){"use strict";var o="<?php echo $font_url; ?>",r="__3perf_googleFonts_<?php echo (!empty($this->_prefix) ? $this->_prefix : 'dilaz'); ?>";function c(e){(n.head||n.body).appendChild(e)}function a(){var e=n.createElement("link");e.href=o,e.rel="stylesheet",c(e)}function f(e){if(!n.getElementById(r)){var t=n.createElement("style");t.id=r,c(t)}n.getElementById(r).innerHTML=e}e.FontFace&&e.FontFace.prototype.hasOwnProperty("display")?(t[r]&&f(t[r]),fetch(o).then(function(e){return e.text()}).then(function(e){return e.replace(/@font-face {/g,"@font-face{font-display:swap;")}).then(function(e){return t[r]=e}).then(f).catch(a)):a()}(window,document,localStorage);
</script>
<!-- End of code snippet for Google Fonts -->
<?php
}
}
}
}
# Dilaz metabox get use type based on current metabox usage
function dilaz_metabox_get_use_type($filename) {
if (false !== strpos(dirname($filename), '\plugins\\') || false !== strpos(dirname($filename), '/plugins/')) {
return 'plugin';
} else if (false !== strpos(dirname($filename), '\themes\\') || false !== strpos(dirname($filename), '/themes/')) {
return 'theme';
} else {
return false;
}
}
# Dilaz metabox theme object
function dilaz_metabox_theme_params($theme_object, $filename) {
$theme_name = is_child_theme() ? $theme_object['Template'] : $theme_object['Name'];
$theme_name_lc = strtolower($theme_name);
$theme_version = $theme_object['Version'];
$theme_uri = is_child_theme() ? get_stylesheet_directory_uri() : get_template_directory_uri();
$theme_folder = basename($theme_uri);
/*
* If the theme folder name string appears multiple times,
* lets split the string as shown below and focus only
* on the last theme folder name string
*/
$split_1 = explode('includes', dirname($filename));
$split_2 = explode($theme_folder, $split_1[0]);
$split_2_last = array_pop($split_2);
$use_type_parameters = array(
'item_name' => $theme_name,
'item_version' => $theme_version,
'item_url' => trailingslashit($theme_uri),
'dir_url' => trailingslashit($theme_uri . wp_normalize_path($split_2_last)),
);
return $use_type_parameters;
}
# Dilaz metabox plugin object
function dilaz_metabox_plugin_params($filename) {
if (!function_exists('get_plugin_data')) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
}
$plugin_data = [];
$plugins_dir = trailingslashit(WP_PLUGIN_DIR);
$plugin_basename = plugin_basename($filename);
$plugin_folder = strtok($plugin_basename, '/');
# use global to check plugin data from all PHP files within plugin main folder
foreach (glob(trailingslashit($plugins_dir . $plugin_folder) . '*.php') as $file) {
$plugin_data = get_plugin_data($file);
# lets ensure we don't return empty plugin data
if (empty($plugin_data['Name'])) continue; else break;
}
$plugin_name = $plugin_data['Name'];
$plugin_name_lc = strtolower($plugin_name);
$plugin_version = $plugin_data['Version'];
/*
* If the theme name string multiple times, lets
* split the string as show below and focus only
* on the last theme name string
*/
$split_1 = explode('includes', plugin_dir_url($filename));
$split_2 = explode($plugin_folder, $split_1[0]);
$split_2_last = array_pop($split_2);
$split_3 = array($split_2_last, implode($plugin_folder, $split_2));
$use_type_parameters = array(
'item_name' => $plugin_name,
'item_version' => $plugin_version,
'item_url' => trailingslashit($split_3[1].$plugin_folder),
'dir_url' => trailingslashit($split_3[1].$plugin_folder.wp_normalize_path($split_3[0])),
);
return $use_type_parameters;
}
/* Add update checker */
require_once plugin_dir_path(__FILE__) . 'inc/update-checker/plugin-update-checker.php';
if (class_exists('Puc_v4_Factory')) {
$dilazMetaboxUpdateChecker = \Puc_v4_Factory::buildUpdateChecker(
'https://github.com/Rodgath/Dilaz-Metabox/',
__FILE__,
'dilaz-metabox'
);
$dilazMetaboxUpdateChecker->setBranch('main');
}