-
Notifications
You must be signed in to change notification settings - Fork 58
/
cherry-core.php
executable file
·485 lines (402 loc) · 11.8 KB
/
cherry-core.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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
<?php
/**
* Class Cherry Core
* Version: 1.5.11
*
* @package Cherry_Framework
* @subpackage Class
* @author Cherry Team <cherryframework@gmail.com>
* @copyright Copyright (c) 2012 - 2016, Cherry Team
* @link http://www.cherryframework.com/
* @license http://www.gnu.org/licenses/gpl-3.0.en.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
if ( ! class_exists( 'Cherry_Core' ) ) {
/**
* Class Cherry Core.
*/
class Cherry_Core {
/**
* A reference to an instance of this class.
*
* @since 1.0.0
* @var object
*/
private static $instance = null;
/**
* Core settings.
*
* @since 1.0.0
* @var array
*/
public $settings = array();
/**
* Holder for all registered modules for current core instance.
*
* @since 1.0.0
* @var array
*/
public $modules = array();
/**
* Holder for all modules.
*
* @since 1.1.0
* @var array
*/
public static $all_modules = array();
/**
* Constructor.
*
* @since 1.0.0
*/
public function __construct( $settings = array() ) {
global $chery_core_version;
$defaults = array(
'framework_path' => 'cherry-framework',
'modules' => array(),
'base_dir' => '',
'base_url' => '',
);
$this->settings = array_merge( $defaults, $settings );
if ( isset( $chery_core_version ) && 0 < sizeof( $chery_core_version ) ) {
$core_paths = array_values( $chery_core_version );
$path_parts = pathinfo( $core_paths[0] );
$this->settings['base_dir'] = trailingslashit( $path_parts['dirname'] );
} else {
// This condition and the using of the function dirname is due to core backwards compatibility with old framework versions
$this->settings['base_dir'] = trailingslashit( dirname( __FILE__ ) );
}
$this->settings['base_url'] = trailingslashit( $this->base_url( '', $this->settings['base_dir'] ) );
$this->run_collector();
/**
* In this hooks priority parameter are very important.
*/
add_action( 'after_setup_theme', array( 'Cherry_Core', 'load_all_modules' ), 2 );
add_action( 'after_setup_theme', array( $this, 'init_required_modules' ), 2 );
// Load the framework textdomain.
add_action( 'after_setup_theme', array( $this, 'load_textdomain' ), 10 );
// Init modules with autoload seted up into true.
add_action( 'after_setup_theme', array( $this, 'init_autoload_modules' ), 9999 );
// Backward compatibility for `cherry-widget-factory` module.
remove_all_filters( 'cherry_widget_factory_core', 10 );
add_filter( 'cherry_widget_factory_core', array( $this, 'pass_core_to_widgets' ), 11, 2 );
}
/**
* Fire collector for modules.
*
* @since 1.0.0
* @return bool
*/
private function run_collector() {
if ( ! is_array( $this->settings['modules'] ) || empty( $this->settings['modules'] ) ) {
return false;
}
// Cherry_Toolkit module should be loaded by default.
if ( ! isset( $this->settings['modules']['cherry-toolkit'] ) ) {
$this->settings['modules']['cherry-toolkit'] = array(
'autoload' => true,
);
}
foreach ( $this->settings['modules'] as $module => $settings ) {
$file_path = $this->get_module_file( $module );
if ( ! array_key_exists( $module, self::$all_modules ) ) {
self::$all_modules[ $module ] = $file_path;
}
}
/**
* Filter a holder for all modules.
*
* @since 1.1.0
* @var array
*/
self::$all_modules = apply_filters( 'cherry_core_all_modules', self::$all_modules, $this );
}
/**
* Loaded all modules.
*
* @since 1.1.0
*/
public static function load_all_modules() {
foreach ( self::$all_modules as $module => $path ) {
$loaded = self::load_module( $module, $path );
if ( ! $loaded ) {
continue;
}
}
}
/**
* Load the framework textdomain.
*
* @since 1.4.0
*/
public function load_textdomain() {
$mo_file_path = $this->settings['base_dir'] . 'languages/' . get_locale() . '.mo';
load_textdomain( 'cherry-framework', $mo_file_path );
}
/**
* Init a required modules.
*
* @since 1.1.0
*/
public function init_required_modules() {
$required_modules = apply_filters( 'cherry_core_required_modules', array(
'cherry-toolkit',
'cherry-widget-factory',
), $this );
foreach ( $required_modules as $module ) {
if ( ! array_key_exists( $module, $this->settings['modules'] ) ) {
continue;
}
$settings = $this->settings['modules'][ $module ];
$args = ! empty( $settings['args'] ) ? $settings['args'] : array();
$this->init_module( $module, $args );
}
}
/**
* Init autoload modules.
*
* @since 1.1.0
*/
public function init_autoload_modules() {
if ( empty( $this->modules ) ) {
return;
}
foreach ( $this->settings['modules'] as $module => $settings ) {
if ( ! $this->is_module_autoload( $module ) ) {
continue;
}
if ( ! empty( $this->modules[ $module ] ) ) {
continue;
}
$args = ! empty( $settings['args'] ) ? $settings['args'] : array();
$this->init_module( $module, $args );
}
}
/**
* Init single module.
*
* @since 1.0.0
* @param string $module Module slug.
* @param array $args Module arguments array.
* @return mixed
*/
public function init_module( $module, $args = array() ) {
if ( empty( $args[ 'module_path' ] ) ) {
$get_module_path = $this->get_module_path( $module );
$args['module_path'] = ( $get_module_path ) ? $get_module_path : '';
}
$this->modules[ $module ] = $this->get_module_instance( $module, $args );
/**
* Filter a single module after initialization.
*
* @since 1.1.0
*/
return apply_filters( 'cherry_core_init_module', $this->modules[ $module ], $module, $args, $this );
}
/**
* Check module autoload.
*
* @since 1.0.0
* @param string $module Module slug.
* @return bool
*/
public function is_module_autoload( $module ) {
if ( empty( $this->settings['modules'][ $module ]['autoload'] ) ) {
return false;
}
return $this->settings['modules'][ $module ]['autoload'];
}
/**
* Include module.
*
* @since 1.0.0
* @param string $module Module slug.
* @param string $path Module path.
* @return bool
*/
public static function load_module( $module, $path ) {
if (
'cherry-interface-builder' === $module
&& file_exists( str_replace( 'cherry-interface-builder', 'cherry5-interface-builder', $path ) )
) {
$module = 'cherry5-interface-builder';
$path = str_replace( 'cherry-interface-builder', 'cherry5-interface-builder', $path );
}
$class_name = self::get_class_name( $module );
if ( ! $path ) {
return false;
}
if ( class_exists( $class_name ) ) {
return true;
}
require_once( $path );
return true;
}
/**
* Get module instance.
*
* @since 1.0.0
* @param string $module Module slug.
* @param array $args Module arguments.
* @return object
*/
public function get_module_instance( $module, $args = array() ) {
$class_name = self::get_class_name( $module );
if (
'cherry-interface-builder' === $module
&& class_exists( self::get_class_name( 'cherry5-interface-builder' ) ) ) {
$class_name = self::get_class_name( 'cherry5-interface-builder' );
}
if ( ! class_exists( $class_name ) ) {
echo '<p>Class <b>' . esc_html( $class_name ) . '</b> not exist!</p>';
return false;
}
$this->modules[ $module ] = call_user_func( array( $class_name, 'get_instance' ), $this, $args );
return $this->modules[ $module ];
}
/**
* Get class name by module slug.
*
* @since 1.0.0
* @param string $slug Module slug.
* @return string
*/
public static function get_class_name( $slug = '' ) {
$slug = str_replace( '-', ' ', $slug );
$class = str_replace( ' ', '_', ucwords( $slug ) );
return $class;
}
/**
* Get path to main file for passed module.
*
* @since 1.0.1
* @param string $module Module slug.
* @return string
*/
public function get_module_path( $module ) {
$abs_path = false;
$rel_path = 'modules/' . $module . '/';
if ( file_exists( $this->settings['base_dir'] . $rel_path ) ) {
$abs_path = $this->settings['base_dir'] . $rel_path;
}
return $abs_path;
}
/**
* Get path to main file for passed module.
*
* @since 1.0.1
* @param string $module Module slug.
* @return string
*/
public function get_module_file( $module ) {
$abs_path = false;
$rel_path = 'modules/' . $module . '/' . $module . '.php';
if ( file_exists( $this->settings['base_dir'] . $rel_path ) ) {
$abs_path = $this->settings['base_dir'] . $rel_path;
}
return $abs_path;
}
/**
* Retrieves the absolute URL to the current file.
* Like a WordPress function `plugins_url`.
*
* @link https://codex.wordpress.org/Function_Reference/plugins_url
* @since 1.0.1
* @param string $file_path Optional. Extra path appended to the end of the URL.
* @param string $module_path A full path to the core or module file.
* @return string
*/
public static function base_url( $file_path = '', $module_path ) {
$module_path = wp_normalize_path( $module_path );
preg_match( '/\.[0-9a-z]+$/', $module_path, $ext );
if ( empty( $ext ) ) {
$module_dir = $module_path;
} else {
// This condition and the using of the function dirname is due to core backwards compatibility with old framework versions
$module_dir = dirname( $module_path );
}
$plugin_dir = wp_normalize_path( WP_PLUGIN_DIR );
$stylesheet = get_stylesheet();
$theme_root = get_raw_theme_root( $stylesheet );
$theme_dir = "$theme_root/$stylesheet";
if ( 0 === strpos( $module_dir, $plugin_dir ) ) {
$site_url = site_url();
$abs_path = wp_normalize_path( ABSPATH );
$url = str_replace( untrailingslashit( $abs_path ), $site_url, $module_dir );
} else if ( false !== strpos( $module_path, $theme_dir ) ) {
$explode = explode( $theme_dir, $module_dir );
$url = get_stylesheet_directory_uri() . end( $explode );
} else {
$site_url = site_url();
$abs_path = wp_normalize_path( ABSPATH );
$url = str_replace( untrailingslashit( $abs_path ), $site_url, $module_dir );
}
if ( $file_path && is_string( $file_path ) ) {
$url = trailingslashit( $url );
$url .= ltrim( $file_path, '/' );
}
return apply_filters( 'cherry_core_base_url', $url, $file_path, $module_path );
}
/**
* Pass core instance into widget.
*
* @since 1.1.0
* @param mixed $core Current core object.
* @param string $path Abstract widget file path.
* @return mixed
*/
public function pass_core_to_widgets( $core, $path ) {
$path = str_replace( '\\', '/', $path );
$current_core = str_replace( '\\', '/', $this->settings['base_dir'] );
if ( false !== strpos( $path, $current_core ) ) {
return self::get_instance();
}
return $core;
}
/**
* Get core version.
*
* @since 1.5.0
* @return string
*/
public function get_core_version() {
global $chery_core_version;
return key( $chery_core_version );
}
/**
* Get path to the core directory.
*
* @since 1.0.0
* @return string
*/
public function get_core_dir() {
return trailingslashit( $this->settings['base_dir'] );
}
/**
* Get URI to the core directory.
*
* @since 1.0.0
* @deprecated 1.1.0 Use `base_url()` method
* @return string
*/
public function get_core_url() {
return trailingslashit( $this->settings['base_url'] );
}
/**
* Returns the instance.
*
* @since 1.0.0
* @return object
*/
public static function get_instance() {
// If the single instance hasn't been set, set it now.
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
}
}