generated from Pierre-Lannoy/wp-plugin-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdevice-detector.php
81 lines (74 loc) · 2.18 KB
/
device-detector.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
<?php
/**
* Main plugin file.
*
* @package Bootstrap
* @author Pierre Lannoy <https://pierre.lannoy.fr/>.
* @since 1.1.0
*
* @wordpress-plugin
* Plugin Name: Device Detector
* Plugin URI: https://perfops.one/device-detector
* Description: Full featured analytics reporting and management tool that detects all devices accessing your WordPress site.
* Version: 4.2.1
* Requires at least: 6.2
* Requires PHP: 8.1
* Author: Pierre Lannoy / PerfOps One
* Author URI: https://perfops.one
* License: GPLv3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Network: true
* Text Domain: device-detector
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once __DIR__ . '/init.php';
require_once __DIR__ . '/functions.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';
require_once __DIR__ . '/includes/features/class-wpcli.php';
/**
* The code that runs during plugin activation.
*
* @since 1.0.0
*/
function podd_activate() {
PODeviceDetector\Plugin\Activator::activate();
}
/**
* The code that runs during plugin deactivation.
*
* @since 1.0.0
*/
function podd_deactivate() {
PODeviceDetector\Plugin\Deactivator::deactivate();
}
/**
* The code that runs during plugin uninstallation.
*
* @since 1.0.0
*/
function podd_uninstall() {
PODeviceDetector\Plugin\Uninstaller::uninstall();
}
/**
* Begins execution of the plugin.
*
* @since 1.0.0
*/
function podd_run() {
\DecaLog\Engine::initPlugin( PODD_SLUG, PODD_PRODUCT_NAME, PODD_VERSION, \PODeviceDetector\Plugin\Core::get_base64_logo() );
\PODeviceDetector\System\Cache::init();
$plugin = new PODeviceDetector\Plugin\Core();
$plugin->run();
}
register_activation_hook( __FILE__, 'podd_activate' );
register_deactivation_hook( __FILE__, 'podd_deactivate' );
register_uninstall_hook( __FILE__, 'podd_uninstall' );
podd_run();