PluginProbe
Customify / 1.2.3
Customify v1.2.3
2.10.9 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.7.1 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.0.1 1.6.5 1.7.0 1.7.1 All 77 releases
customify / core / bootstrap.php

bootstrap.php in Customify 1.2.3, at core/bootstrap.php

23 lines 543 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined('ABSPATH') or die;
2
3 // ensure EXT is defined
4 if ( ! defined('EXT')) {
5 define('EXT', '.php');
6 }
7
8 $basepath = dirname(__FILE__).DIRECTORY_SEPARATOR;
9 require $basepath.'core'.EXT;
10
11 // load classes
12
13 $interfacepath = $basepath.'interfaces'.DIRECTORY_SEPARATOR;
14 pixcustomify::require_all($interfacepath);
15
16 $classpath = $basepath.'classes'.DIRECTORY_SEPARATOR;
17 pixcustomify::require_all($classpath);
18
19 // load callbacks
20
21 $callbackpath = $basepath.'callbacks'.DIRECTORY_SEPARATOR;
22 pixcustomify::require_all($callbackpath);
23