PluginProbe
FakerPress / 0.8.0
FakerPress v0.8.0
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 / src / functions / load.php

load.php in FakerPress 0.8.0, at src/functions/load.php

15 lines 478 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Loads the whole FakerPress plugin.
4 *
5 * Please keep in mind that this is the only function that should be called from the main plugin file.
6 * This function will load the plugin, all its dependencies, and it will boot the plugin.
7 * Only function or class that is not namespaced.
8 *
9 * @since 0.6.0
10 */
11 function fakerpress_load_plugin(): FakerPress\Plugin {
12 require_once dirname( __FP_FILE__ ) . '/src/FakerPress/Plugin.php';
13 return FakerPress\Plugin::boot();
14 }
15