PluginProbe
FakerPress / 0.5.2
FakerPress v0.5.2
0.9.2 trunk 0.1.0 0.1.1 0.1.2 0.1.3 0.5.2 0.5.3 0.6.1 0.6.2 0.6.3 0.6.4 0.6.5 0.6.6 0.7.0 0.7.1 0.7.2 0.8.0 0.9.0 0.9.1
fakerpress / load.php

load.php in FakerPress 0.5.2, at load.php

21 lines 591 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace FakerPress;
3
4 // Load Composer Vendor Modules
5 require_once plugin_dir_path( __FP_FILE__ ) . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
6
7 require_once 'src/functions/array.php';
8 require_once 'src/functions/globals.php';
9 require_once 'src/functions/filter.php';
10 require_once 'src/functions/conditionals.php';
11 require_once 'src/functions/sorting.php';
12 require_once 'src/functions/assets.php';
13
14 // Create the Plugin static instance
15 $FakerPress = new Plugin;
16
17 // Require our Administration Class
18 Plugin::$admin = new Admin;
19
20 // Require our Ajax Class
21 Plugin::$ajax = new Ajax;