PluginProbe
Boxzilla – WordPress Popup Builder / 3.2.21
Boxzilla – WordPress Popup Builder v3.2.21
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 +35 -54 3.4.43.2.21 View file →
@@ -1,20 +1,18 @@
1 1 <?php
2 -
3 2 /*
4 3 Plugin Name: Boxzilla
5 -Version: 3.4.4
6 -Plugin URI: https://www.boxzillaplugin.com/
4 +Version: 3.2.21
5 +Plugin URI: https://boxzillaplugin.com/#utm_source=wp-plugin&utm_medium=boxzilla&utm_campaign=plugins-page
7 6 Description: Call-To-Action Boxes that display after visitors scroll down far enough. Unobtrusive, but highly conversing!
8 7 Author: ibericode
9 -Author URI: https://www.ibericode.com/
8 +Author URI: https://ibericode.com/#utm_source=wp-plugin&utm_medium=boxzilla&utm_campaign=plugins-page
10 9 Text Domain: boxzilla
11 10 Domain Path: /languages/
12 -License: GPL-3.0-or-later
13 -License URI: http://www.gnu.org/licenses/gpl-3.0.html
11 +License: GPL v3
14 12
15 13 Boxzilla Plugin
16 -Copyright (C) 2013 Danny van Kooten
14 +Copyright (C) 2013 - 2020, Danny van Kooten, hi@dannyvankooten.com
17 15
18 16 This program is free software: you can redistribute it and/or modify
19 17 it under the terms of the GNU General Public License as published by
20 18 the Free Software Foundation, either version 3 of the License, or
@@ -25,63 +23,46 @@
25 23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 24 GNU General Public License for more details.
27 25
28 26 You should have received a copy of the GNU General Public License
29 -along with this program. If not, see <https://www.gnu.org/licenses/>.
27 +along with this program. If not, see <http://www.gnu.org/licenses/>.
30 28 */
31 29
30 +if ( ! defined( 'ABSPATH' ) ) {
31 + header( 'Status: 403 Forbidden' );
32 + header( 'HTTP/1.1 403 Forbidden' );
33 + exit;
34 +}
32 35
33 -// Exit if not loaded inside a WordPress context
34 -defined('ABSPATH') or exit;
35 36
36 -// Exit if PHP lower than 7.4
37 -PHP_VERSION_ID >= 70400 or exit;
37 +/**
38 + * @ignore
39 + * @internal
40 + */
41 +function _load_boxzilla() {
38 42
39 -define('BOXZILLA_FILE', __FILE__);
40 -define('BOXZILLA_DIR', __DIR__);
41 -define('BOXZILLA_VERSION', '3.4.4');
43 + define( 'BOXZILLA_FILE', __FILE__ );
44 + define( 'BOXZILLA_VERSION', '3.2.21' );
42 45
43 -require __DIR__ . '/autoload.php';
44 -require __DIR__ . '/src/services.php';
45 -require __DIR__ . '/src/licensing/services.php';
46 + require __DIR__ . '/bootstrap.php';
47 +}
46 48
49 +// Check if we're on PHP 5.2, if so: bail early.
50 +if ( version_compare( PHP_VERSION, '5.3', '<' ) ) {
51 + require dirname( __FILE__ ) . '/src/class-php-fallback.php';
52 + new Boxzilla_PHP_Fallback( 'Boxzilla', plugin_basename( __FILE__ ) );
53 + return;
54 +}
55 +
56 +// load autoloader but only if not loaded already (for compat with sitewide autoloader)
57 +if ( ! function_exists( 'boxzilla' ) ) {
58 + require __DIR__ . '/vendor/autoload.php';
59 +}
60 +
47 61 // register activation hook
48 -register_activation_hook(__FILE__, [ 'Boxzilla\\Admin\\Installer', 'run' ]);
62 +register_activation_hook( __FILE__, array( 'Boxzilla\\Admin\\Installer', 'run' ) );
49 63
50 -// Bootstrap plugin at later action hook
51 -add_action(
52 - 'plugins_loaded',
53 - function () {
54 - $boxzilla = boxzilla();
64 +// hook into plugins_loaded for boostrapping
65 +add_action( 'plugins_loaded', '_load_boxzilla', 8 );
55 66
56 - // load default filters
57 - require __DIR__ . '/src/default-filters.php';
58 - require __DIR__ . '/src/default-actions.php';
59 67
60 - if (defined('DOING_AJAX') && DOING_AJAX) {
61 - $boxzilla['filter.autocomplete']->init();
62 - $boxzilla['admin.menu']->init();
63 - } elseif (defined('DOING_CRON') && DOING_CRON) {
64 - $boxzilla['license_poller']->init();
65 - } elseif (is_admin()) {
66 - $boxzilla['admin']->init();
67 - $boxzilla['admin.menu']->init();
68 - } else {
69 - add_action(
70 - 'template_redirect',
71 - function () use ($boxzilla) {
72 - $boxzilla['box_loader']->init();
73 - }
74 - );
75 - }
76 68
77 - // license manager
78 - if (is_admin() || ( defined('DOING_CRON') && DOING_CRON ) || ( defined('WP_CLI') && WP_CLI )) {
79 - $boxzilla['license_manager']->init();
80 -
81 - if (count($boxzilla->plugins) > 0) {
82 - $boxzilla['update_manager']->init();
83 - }
84 - }
85 - },
86 - 90
87 -);