PluginProbe
Boxzilla – WordPress Popup Builder / 3.4.11
Boxzilla – WordPress Popup Builder v3.4.11
3.4.11 3.4.10 3.4.9 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 trunk 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 All 72 releases
← All changes | boxzilla.php +89 -64 3.13.4.11 View file →
@@ -1,64 +1,89 @@
1 -<?php
2 -/*
3 -Plugin Name: Boxzilla
4 -Version: 3.1
5 -Plugin URI: https://boxzillaplugin.com/#utm_source=wp-plugin&utm_medium=boxzilla&utm_campaign=plugins-page
6 -Description: Call-To-Action Boxes that display after visitors scroll down far enough. Unobtrusive, but highly conversing!
7 -Author: ibericode
8 -Author URI: https://ibericode.com/#utm_source=wp-plugin&utm_medium=boxzilla&utm_campaign=plugins-page
9 -Text Domain: boxzilla
10 -Domain Path: /languages/
11 -License: GPL v3
12 -
13 -Boxzilla Plugin
14 -Copyright (C) 2013-2016, Danny van Kooten, hi@dannyvankooten.com
15 -
16 -This program is free software: you can redistribute it and/or modify
17 -it under the terms of the GNU General Public License as published by
18 -the Free Software Foundation, either version 3 of the License, or
19 -(at your option) any later version.
20 -
21 -This program is distributed in the hope that it will be useful,
22 -but WITHOUT ANY WARRANTY; without even the implied warranty of
23 -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 -GNU General Public License for more details.
25 -
26 -You should have received a copy of the GNU General Public License
27 -along with this program. If not, see <http://www.gnu.org/licenses/>.
28 -*/
29 -
30 -if ( ! defined( 'ABSPATH' ) ) {
31 - header( 'Status: 403 Forbidden' );
32 - header( 'HTTP/1.1 403 Forbidden' );
33 - exit;
34 -}
35 -
36 -
37 -/**
38 - * @ignore
39 - * @internal
40 - */
41 -function __load_boxzilla() {
42 -
43 - // Load PHP 5.2 fallback
44 - if( version_compare( PHP_VERSION, '5.3', '<' ) ) {
45 - require dirname( __FILE__ ) . '/src/class-php-fallback.php';
46 - new Boxzilla_PHP_Fallback( 'Boxzilla', plugin_basename( __FILE__ ) );
47 - return;
48 - }
49 -
50 - define( 'BOXZILLA_FILE', __FILE__ );
51 - define( 'BOXZILLA_VERSION', '3.1' );
52 -
53 - require __DIR__ . '/bootstrap.php';
54 -}
55 -
56 -// load autoloader but only if not loaded already (for compat with sitewide autoloader)
57 -if( ! function_exists( 'boxzilla' ) ) {
58 - require dirname( __FILE__ ) . '/vendor/autoload.php';
59 -}
60 -
61 -// register activation hook
62 -register_activation_hook( __FILE__, array( 'Boxzilla\\Admin\\Installer', 'run' ) );
63 -
64 -add_action( 'plugins_loaded', '__load_boxzilla', 8 );
1 +<?php
2 +
3 +/*
4 +Plugin Name: Boxzilla
5 +Version: 3.4.11
6 +Plugin URI: https://www.boxzillaplugin.com/
7 +Description: Call-To-Action Boxes that display after visitors scroll down far enough. Unobtrusive, but highly conversing!
8 +Author: ibericode
9 +Author URI: https://www.ibericode.com/
10 +Text Domain: boxzilla
11 +Requires at least: 4.6
12 +Requires PHP: 7.4
13 +License: GPL-3.0-or-later
14 +License URI: http://www.gnu.org/licenses/gpl-3.0.html
15 +
16 +Boxzilla Plugin
17 +Copyright (C) 2013 Danny van Kooten
18 +
19 +This program is free software: you can redistribute it and/or modify
20 +it under the terms of the GNU General Public License as published by
21 +the Free Software Foundation, either version 3 of the License, or
22 +(at your option) any later version.
23 +
24 +This program is distributed in the hope that it will be useful,
25 +but WITHOUT ANY WARRANTY; without even the implied warranty of
26 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 +GNU General Public License for more details.
28 +
29 +You should have received a copy of the GNU General Public License
30 +along with this program. If not, see <https://www.gnu.org/licenses/>.
31 +*/
32 +
33 +
34 +// Exit if not loaded inside a WordPress context
35 +defined('ABSPATH') or exit;
36 +
37 +// Exit if PHP lower than 7.4
38 +PHP_VERSION_ID >= 70400 or exit;
39 +
40 +define('BOXZILLA_FILE', __FILE__);
41 +define('BOXZILLA_DIR', __DIR__);
42 +define('BOXZILLA_VERSION', '3.4.11');
43 +
44 +require __DIR__ . '/autoload.php';
45 +require __DIR__ . '/src/services.php';
46 +require __DIR__ . '/src/licensing/services.php';
47 +
48 +// register activation hook
49 +register_activation_hook(__FILE__, [ 'Boxzilla\\Admin\\Installer', 'run' ]);
50 +register_deactivation_hook(__FILE__, [ 'Boxzilla\\Licensing\\Poller', 'deactivate' ]);
51 +
52 +// Bootstrap plugin at later action hook
53 +add_action(
54 + 'plugins_loaded',
55 + function () {
56 + $boxzilla = boxzilla();
57 +
58 + // load default filters
59 + require __DIR__ . '/src/default-filters.php';
60 + require __DIR__ . '/src/default-actions.php';
61 +
62 + if (wp_doing_ajax()) {
63 + $boxzilla['filter.autocomplete']->init();
64 + $boxzilla['admin.menu']->init();
65 + } elseif (wp_doing_cron()) {
66 + $boxzilla['license_poller']->init();
67 + } elseif (is_admin()) {
68 + $boxzilla['admin']->init();
69 + $boxzilla['admin.menu']->init();
70 + } else {
71 + add_action(
72 + 'template_redirect',
73 + function () use ($boxzilla) {
74 + $boxzilla['box_loader']->init();
75 + }
76 + );
77 + }
78 +
79 + // license manager
80 + if (is_admin() || wp_doing_cron() || ( defined('WP_CLI') && WP_CLI )) {
81 + $boxzilla['license_manager']->init();
82 +
83 + if (count($boxzilla->plugins) > 0) {
84 + $boxzilla['update_manager']->init();
85 + }
86 + }
87 + },
88 + 90
89 +);