-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmaxboxy.php
More file actions
41 lines (38 loc) · 1.28 KB
/
Copy pathmaxboxy.php
File metadata and controls
41 lines (38 loc) · 1.28 KB
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
<?php
/**
* Plugin Name: MaxBoxy
* Description: Make Conversion Boxes, Popups, Floats and Inject Any Content in a WorsPress way!
*
* PHP version 7.4
*
* @category Conversion
* @package MaxBoxy
* @author MaxPressy <webmaster@maxpressy.com>
* @license GPL v2 or later
* @link maxpressy.com
*
* Author: MaxPressy
* Author URI: https://maxpressy.com
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Version: 1.2.2
* Text Domain: maxboxy
* Domain Path: /languages
* Requires at least: 6.7
*/
if (! defined('ABSPATH') ) {
exit;
}
// Plugin data (getting plugin version, name, etc.)
if (! function_exists('get_plugin_data')) {
include_once ABSPATH .'wp-admin/includes/plugin.php';
}
$plugin_data = get_plugin_data(__FILE__, true, false);
define('MAXBOXY', ($plugin_data && $plugin_data['Name']) ? $plugin_data['Name'] : 'MaxBoxy');
define('MAXBOXY_VERSION', ($plugin_data && $plugin_data['Version']) ? $plugin_data['Version'] : '1.0.0');
require_once 'admin/admin-init.php';
require_once 'classes/init.php';
require_once 'classes/options.php';
require_once 'classes/admin-columns.php';
require_once 'classes/track.php';
require_once 'patterns.php';