-
Notifications
You must be signed in to change notification settings - Fork 2
/
wp-plugin-boilerplate.php
76 lines (69 loc) · 1.79 KB
/
wp-plugin-boilerplate.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
<?php
/**
* Main plugin file.
*
* @package Bootstrap
* @author Pierre Lannoy <https://pierre.lannoy.fr/>.
* @since 1.0.0
*
* @wordpress-plugin
* Plugin Name: WordPress plugin boilerplate
* Plugin URI: --
* Description: --
* Version: 1.0.0
* Requires at least: 5.2
* Requires PHP: 7.2
* Author: Pierre Lannoy / PerfOps One
* Author URI: https://perfops.one
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: wp-plugin-boilerplate
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once __DIR__ . '/init.php';
require_once __DIR__ . '/includes/system/class-option.php';
require_once __DIR__ . '/includes/system/class-environment.php';
require_once __DIR__ . '/autoload.php';
require_once __DIR__ . '/includes/libraries/class-libraries.php';
require_once __DIR__ . '/includes/libraries/autoload.php';
/**
* The code that runs during plugin activation.
*
* @since 1.0.0
*/
function wppb_activate() {
WPPluginBoilerplate\Plugin\Activator::activate();
}
/**
* The code that runs during plugin deactivation.
*
* @since 1.0.0
*/
function wppb_deactivate() {
WPPluginBoilerplate\Plugin\Deactivator::deactivate();
}
/**
* The code that runs during plugin uninstallation.
*
* @since 1.0.0
*/
function wppb_uninstall() {
WPPluginBoilerplate\Plugin\Uninstaller::uninstall();
}
/**
* Begins execution of the plugin.
*
* @since 1.0.0
*/
function wppb_run() {
$plugin = new WPPluginBoilerplate\Plugin\Core();
$plugin->run();
}
register_activation_hook( __FILE__, 'wppb_activate' );
register_deactivation_hook( __FILE__, 'wppb_deactivate' );
register_uninstall_hook( __FILE__, 'wppb_uninstall' );
wppb_run();