-
Notifications
You must be signed in to change notification settings - Fork 87
/
autoptimize.php
113 lines (96 loc) · 3.78 KB
/
autoptimize.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
/**
* Plugin Name: Autoptimize
* Plugin URI: https://autoptimize.com/pro/
* Description: Makes your site faster by optimizing CSS, JS, Images, Google fonts and more.
* Version: 3.1.13-beta-1
* Author: Frank Goossens (futtta)
* Author URI: https://autoptimize.com/pro/
* Text Domain: autoptimize
* License: GPLv2
* Released under the GNU General Public License (GPL)
* https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
*/
/**
* Autoptimize main plugin file.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
define( 'AUTOPTIMIZE_PLUGIN_VERSION', '3.1.13-beta-1' );
// plugin_dir_path() returns the trailing slash!
define( 'AUTOPTIMIZE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'AUTOPTIMIZE_PLUGIN_FILE', __FILE__ );
// AO beta only; load plugin-update-checker.php and check for updates from GitHub.
if ( is_admin() ) {
require AUTOPTIMIZE_PLUGIN_DIR . 'classes/external/php/plugin-update-checker/plugin-update-checker.php';
$ao_update_checker = Puc_v4_Factory::buildUpdateChecker(
'https://github.com/futtta/autoptimize/',
__FILE__,
'autoptimize'
);
$ao_update_checker->setBranch( 'beta' );
}
// Bail early if attempting to run on non-supported php versions.
if ( version_compare( PHP_VERSION, '5.6', '<' ) ) {
function autoptimize_incompatible_admin_notice() {
echo '<div class="error"><p>' . esc_html__( 'Autoptimize requires PHP 5.6 (or higher) to function properly. Please upgrade PHP. The Plugin has been auto-deactivated.', 'autoptimize' ) . '</p></div>';
if ( isset( $_GET['activate'] ) ) {
unset( $_GET['activate'] );
}
}
function autoptimize_deactivate_self() {
deactivate_plugins( plugin_basename( AUTOPTIMIZE_PLUGIN_FILE ) );
}
add_action( 'admin_notices', 'autoptimize_incompatible_admin_notice' );
add_action( 'admin_init', 'autoptimize_deactivate_self' );
return;
}
function autoptimize_autoload( $class_name ) {
if ( in_array( $class_name, array( 'AO_Minify_HTML', 'JSMin' ) ) ) {
$file = strtolower( $class_name );
$file = str_replace( '_', '-', $file );
$path = dirname( __FILE__ ) . '/classes/external/php/';
$filepath = $path . $file . '.php';
} elseif ( false !== strpos( $class_name, 'Autoptimize\\tubalmartin\\CssMin' ) ) {
$file = str_replace( 'Autoptimize\\tubalmartin\\CssMin\\', '', $class_name );
$path = dirname( __FILE__ ) . '/classes/external/php/yui-php-cssmin-bundled/';
$filepath = $path . $file . '.php';
} elseif ( 'autoptimize' === substr( $class_name, 0, 11 ) ) {
// One of our "old" classes.
$file = $class_name;
$path = dirname( __FILE__ ) . '/classes/';
$filepath = $path . $file . '.php';
} elseif ( 'PAnD' === $class_name ) {
$file = 'persist-admin-notices-dismissal';
$path = dirname( __FILE__ ) . '/classes/external/php/persist-admin-notices-dismissal/';
$filepath = $path . $file . '.php';
}
// If we didn't match one of our rules, bail!
if ( ! isset( $filepath ) || ! is_readable( $filepath ) ) {
return;
}
require $filepath;
}
spl_autoload_register( 'autoptimize_autoload' );
// Load WP CLI command(s) on demand.
if ( defined( 'WP_CLI' ) && WP_CLI ) {
require AUTOPTIMIZE_PLUGIN_DIR . 'classes/autoptimizeCLI.php';
}
// filter to disable AO both on front- and backend.
if ( apply_filters( 'autoptimize_filter_disable_plugin', false ) ) {
return;
}
/**
* Retrieve the instance of the main plugin class.
*
* @return autoptimizeMain
*/
function autoptimize() {
static $plugin = null;
if ( null === $plugin ) {
$plugin = new autoptimizeMain( AUTOPTIMIZE_PLUGIN_VERSION, AUTOPTIMIZE_PLUGIN_FILE );
}
return $plugin;
}
autoptimize()->run();