@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
|
| 2 | +if (!defined('ABSPATH')) exit; // Exit if accessed directly |
|
| 3 | 3 | |
| 4 | 4 | class autoptimizeCache { |
| 5 | 5 | private $filename; |
@@ -7,14 +7,14 @@ discard block |
||
| 7 | 7 | private $cachedir; |
| 8 | 8 | private $delayed; |
| 9 | 9 | |
| 10 | - public function __construct($md5,$ext='php') { |
|
| 10 | + public function __construct($md5, $ext = 'php') { |
|
| 11 | 11 | $this->cachedir = AUTOPTIMIZE_CACHE_DIR; |
| 12 | 12 | $this->delayed = AUTOPTIMIZE_CACHE_DELAY; |
| 13 | 13 | $this->nogzip = AUTOPTIMIZE_CACHE_NOGZIP; |
| 14 | - if($this->nogzip == false) { |
|
| 14 | + if ($this->nogzip == false) { |
|
| 15 | 15 | $this->filename = AUTOPTIMIZE_CACHEFILE_PREFIX.$md5.'.php'; |
| 16 | 16 | } else { |
| 17 | - if (in_array($ext, array("js","css"))) { |
|
| 17 | + if (in_array($ext, array("js", "css"))) { |
|
| 18 | 18 | $this->filename = $ext.'/'.AUTOPTIMIZE_CACHEFILE_PREFIX.$md5.'.'.$ext; |
| 19 | 19 | } else { |
| 20 | 20 | $this->filename = AUTOPTIMIZE_CACHEFILE_PREFIX.$md5.'.'.$ext; |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public function check() { |
| 26 | - if(!file_exists($this->cachedir.$this->filename)) { |
|
| 26 | + if (!file_exists($this->cachedir.$this->filename)) { |
|
| 27 | 27 | // No cached file, sorry |
| 28 | 28 | return false; |
| 29 | 29 | } |
@@ -32,8 +32,8 @@ discard block |
||
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | public function retrieve() { |
| 35 | - if($this->check()) { |
|
| 36 | - if($this->nogzip == false) { |
|
| 35 | + if ($this->check()) { |
|
| 36 | + if ($this->nogzip == false) { |
|
| 37 | 37 | return file_get_contents($this->cachedir.$this->filename.'.none'); |
| 38 | 38 | } else { |
| 39 | 39 | return file_get_contents($this->cachedir.$this->filename); |
@@ -42,48 +42,48 @@ discard block |
||
| 42 | 42 | return false; |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - public function cache($code,$mime) { |
|
| 46 | - if($this->nogzip == false) { |
|
| 45 | + public function cache($code, $mime) { |
|
| 46 | + if ($this->nogzip == false) { |
|
| 47 | 47 | $file = ($this->delayed ? 'delayed.php' : 'default.php'); |
| 48 | 48 | $phpcode = file_get_contents(AUTOPTIMIZE_PLUGIN_DIR.'/config/'.$file); |
| 49 | - $phpcode = str_replace(array('%%CONTENT%%','exit;'),array($mime,''),$phpcode); |
|
| 50 | - file_put_contents($this->cachedir.$this->filename,$phpcode, LOCK_EX); |
|
| 51 | - file_put_contents($this->cachedir.$this->filename.'.none',$code, LOCK_EX); |
|
| 52 | - if(!$this->delayed) { |
|
| 49 | + $phpcode = str_replace(array('%%CONTENT%%', 'exit;'), array($mime, ''), $phpcode); |
|
| 50 | + file_put_contents($this->cachedir.$this->filename, $phpcode, LOCK_EX); |
|
| 51 | + file_put_contents($this->cachedir.$this->filename.'.none', $code, LOCK_EX); |
|
| 52 | + if (!$this->delayed) { |
|
| 53 | 53 | // Compress now! |
| 54 | - file_put_contents($this->cachedir.$this->filename.'.deflate',gzencode($code,9,FORCE_DEFLATE), LOCK_EX); |
|
| 55 | - file_put_contents($this->cachedir.$this->filename.'.gzip',gzencode($code,9,FORCE_GZIP), LOCK_EX); |
|
| 54 | + file_put_contents($this->cachedir.$this->filename.'.deflate', gzencode($code, 9, FORCE_DEFLATE), LOCK_EX); |
|
| 55 | + file_put_contents($this->cachedir.$this->filename.'.gzip', gzencode($code, 9, FORCE_GZIP), LOCK_EX); |
|
| 56 | 56 | } |
| 57 | 57 | } else { |
| 58 | 58 | // Write code to cache without doing anything else |
| 59 | - file_put_contents($this->cachedir.$this->filename,$code, LOCK_EX); |
|
| 59 | + file_put_contents($this->cachedir.$this->filename, $code, LOCK_EX); |
|
| 60 | 60 | if (apply_filters('autoptimize_filter_cache_create_static_gzip', false)) { |
| 61 | 61 | // Create an additional cached gzip file |
| 62 | - file_put_contents($this->cachedir.$this->filename.'.gz', gzencode($code,9,FORCE_GZIP), LOCK_EX); |
|
| 62 | + file_put_contents($this->cachedir.$this->filename.'.gz', gzencode($code, 9, FORCE_GZIP), LOCK_EX); |
|
| 63 | 63 | } |
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | public function getname() { |
| 68 | - apply_filters('autoptimize_filter_cache_getname',AUTOPTIMIZE_CACHE_URL.$this->filename); |
|
| 68 | + apply_filters('autoptimize_filter_cache_getname', AUTOPTIMIZE_CACHE_URL.$this->filename); |
|
| 69 | 69 | return $this->filename; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | static function clearall() { |
| 73 | - if(!autoptimizeCache::cacheavail()) { |
|
| 73 | + if (!autoptimizeCache::cacheavail()) { |
|
| 74 | 74 | return false; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | // scan the cachedirs |
| 78 | - foreach (array("","js","css") as $scandirName) { |
|
| 78 | + foreach (array("", "js", "css") as $scandirName) { |
|
| 79 | 79 | $scan[$scandirName] = scandir(AUTOPTIMIZE_CACHE_DIR.$scandirName); |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | // clear the cachedirs |
| 83 | 83 | foreach ($scan as $scandirName=>$scanneddir) { |
| 84 | - $thisAoCacheDir=rtrim(AUTOPTIMIZE_CACHE_DIR.$scandirName,"/")."/"; |
|
| 85 | - foreach($scanneddir as $file) { |
|
| 86 | - if(!in_array($file,array('.','..')) && strpos($file,AUTOPTIMIZE_CACHEFILE_PREFIX) !== false && is_file($thisAoCacheDir.$file)) { |
|
| 84 | + $thisAoCacheDir = rtrim(AUTOPTIMIZE_CACHE_DIR.$scandirName, "/")."/"; |
|
| 85 | + foreach ($scanneddir as $file) { |
|
| 86 | + if (!in_array($file, array('.', '..')) && strpos($file, AUTOPTIMIZE_CACHEFILE_PREFIX) !== false && is_file($thisAoCacheDir.$file)) { |
|
| 87 | 87 | @unlink($thisAoCacheDir.$file); |
| 88 | 88 | } |
| 89 | 89 | } |
@@ -98,15 +98,15 @@ discard block |
||
| 98 | 98 | do_action("autoptimize_action_cachepurged"); |
| 99 | 99 | } |
| 100 | 100 | } |
| 101 | - add_action("shutdown","autoptimize_do_cachepurged_action",11); |
|
| 101 | + add_action("shutdown", "autoptimize_do_cachepurged_action", 11); |
|
| 102 | 102 | |
| 103 | 103 | // try to purge caching plugins cache-files? |
| 104 | 104 | include_once(AUTOPTIMIZE_PLUGIN_DIR.'classlesses/autoptimizePageCacheFlush.php'); |
| 105 | - add_action("autoptimize_action_cachepurged","autoptimize_flush_pagecache",10,0); |
|
| 105 | + add_action("autoptimize_action_cachepurged", "autoptimize_flush_pagecache", 10, 0); |
|
| 106 | 106 | |
| 107 | 107 | // warm cache (part of speedupper)? |
| 108 | - if ( apply_filters('autoptimize_filter_speedupper', true) ) { |
|
| 109 | - $warmCacheUrl = site_url()."/?ao_speedup_cachebuster=".rand(1,100000); |
|
| 108 | + if (apply_filters('autoptimize_filter_speedupper', true)) { |
|
| 109 | + $warmCacheUrl = site_url()."/?ao_speedup_cachebuster=".rand(1, 100000); |
|
| 110 | 110 | $warmCache = @wp_remote_get($warmCacheUrl); |
| 111 | 111 | unset($warmCache); |
| 112 | 112 | } |
@@ -114,12 +114,12 @@ discard block |
||
| 114 | 114 | return true; |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - static function stats() { |
|
| 118 | - $AOstats=get_transient("autoptimize_stats"); |
|
| 117 | + static function stats() { |
|
| 118 | + $AOstats = get_transient("autoptimize_stats"); |
|
| 119 | 119 | |
| 120 | 120 | if (empty($AOstats)) { |
| 121 | 121 | // Cache not available :( |
| 122 | - if(!autoptimizeCache::cacheavail()) { |
|
| 122 | + if (!autoptimizeCache::cacheavail()) { |
|
| 123 | 123 | return 0; |
| 124 | 124 | } |
| 125 | 125 | |
@@ -128,28 +128,28 @@ discard block |
||
| 128 | 128 | $size = 0; |
| 129 | 129 | |
| 130 | 130 | // scan the cachedirs |
| 131 | - foreach (array("","js","css") as $scandirName) { |
|
| 131 | + foreach (array("", "js", "css") as $scandirName) { |
|
| 132 | 132 | $scan[$scandirName] = scandir(AUTOPTIMIZE_CACHE_DIR.$scandirName); |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | foreach ($scan as $scandirName=>$scanneddir) { |
| 136 | - $thisAoCacheDir=rtrim(AUTOPTIMIZE_CACHE_DIR.$scandirName,"/")."/"; |
|
| 137 | - foreach($scanneddir as $file) { |
|
| 138 | - if(!in_array($file,array('.','..')) && strpos($file,AUTOPTIMIZE_CACHEFILE_PREFIX) !== false) { |
|
| 139 | - if(is_file($thisAoCacheDir.$file)) { |
|
| 140 | - if(AUTOPTIMIZE_CACHE_NOGZIP && (strpos($file,'.js') !== false || strpos($file,'.css') !== false || strpos($file,'.img') !== false || strpos($file,'.txt') !== false )) { |
|
| 136 | + $thisAoCacheDir = rtrim(AUTOPTIMIZE_CACHE_DIR.$scandirName, "/")."/"; |
|
| 137 | + foreach ($scanneddir as $file) { |
|
| 138 | + if (!in_array($file, array('.', '..')) && strpos($file, AUTOPTIMIZE_CACHEFILE_PREFIX) !== false) { |
|
| 139 | + if (is_file($thisAoCacheDir.$file)) { |
|
| 140 | + if (AUTOPTIMIZE_CACHE_NOGZIP && (strpos($file, '.js') !== false || strpos($file, '.css') !== false || strpos($file, '.img') !== false || strpos($file, '.txt') !== false)) { |
|
| 141 | 141 | $count++; |
| 142 | - } elseif(!AUTOPTIMIZE_CACHE_NOGZIP && strpos($file,'.none') !== false) { |
|
| 142 | + } elseif (!AUTOPTIMIZE_CACHE_NOGZIP && strpos($file, '.none') !== false) { |
|
| 143 | 143 | $count++; |
| 144 | 144 | } |
| 145 | - $size+=filesize($thisAoCacheDir.$file); |
|
| 145 | + $size += filesize($thisAoCacheDir.$file); |
|
| 146 | 146 | } |
| 147 | 147 | } |
| 148 | 148 | } |
| 149 | 149 | } |
| 150 | - $AOstats=array($count,$size,time()); |
|
| 151 | - if ($count>100) { |
|
| 152 | - set_transient("autoptimize_stats",$AOstats,HOUR_IN_SECONDS); |
|
| 150 | + $AOstats = array($count, $size, time()); |
|
| 151 | + if ($count > 100) { |
|
| 152 | + set_transient("autoptimize_stats", $AOstats, HOUR_IN_SECONDS); |
|
| 153 | 153 | } |
| 154 | 154 | } |
| 155 | 155 | // print the number of instances |
@@ -157,36 +157,36 @@ discard block |
||
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | static function cacheavail() { |
| 160 | - if(!defined('AUTOPTIMIZE_CACHE_DIR')) { |
|
| 160 | + if (!defined('AUTOPTIMIZE_CACHE_DIR')) { |
|
| 161 | 161 | // We didn't set a cache |
| 162 | 162 | return false; |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | - foreach (array("","js","css") as $checkDir) { |
|
| 166 | - if(!autoptimizeCache::checkCacheDir(AUTOPTIMIZE_CACHE_DIR.$checkDir)) { |
|
| 165 | + foreach (array("", "js", "css") as $checkDir) { |
|
| 166 | + if (!autoptimizeCache::checkCacheDir(AUTOPTIMIZE_CACHE_DIR.$checkDir)) { |
|
| 167 | 167 | return false; |
| 168 | 168 | } |
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | /** write index.html here to avoid prying eyes */ |
| 172 | - $indexFile=AUTOPTIMIZE_CACHE_DIR.'/index.html'; |
|
| 173 | - if(!is_file($indexFile)) { |
|
| 174 | - @file_put_contents($indexFile,'<html><head><meta name="robots" content="noindex, nofollow"></head><body>Generated by <a href="http://wordpress.org/extend/plugins/autoptimize/" rel="nofollow">Autoptimize</a></body></html>'); |
|
| 172 | + $indexFile = AUTOPTIMIZE_CACHE_DIR.'/index.html'; |
|
| 173 | + if (!is_file($indexFile)) { |
|
| 174 | + @file_put_contents($indexFile, '<html><head><meta name="robots" content="noindex, nofollow"></head><body>Generated by <a href="http://wordpress.org/extend/plugins/autoptimize/" rel="nofollow">Autoptimize</a></body></html>'); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** write .htaccess here to overrule wp_super_cache */ |
| 178 | - $htAccess=AUTOPTIMIZE_CACHE_DIR.'/.htaccess'; |
|
| 179 | - if(!is_file($htAccess)) { |
|
| 178 | + $htAccess = AUTOPTIMIZE_CACHE_DIR.'/.htaccess'; |
|
| 179 | + if (!is_file($htAccess)) { |
|
| 180 | 180 | /** |
| 181 | 181 | * create wp-content/AO_htaccess_tmpl with |
| 182 | 182 | * whatever htaccess rules you might need |
| 183 | 183 | * if you want to override default AO htaccess |
| 184 | 184 | */ |
| 185 | - $htaccess_tmpl=WP_CONTENT_DIR."/AO_htaccess_tmpl"; |
|
| 185 | + $htaccess_tmpl = WP_CONTENT_DIR."/AO_htaccess_tmpl"; |
|
| 186 | 186 | if (is_file($htaccess_tmpl)) { |
| 187 | - $htAccessContent=file_get_contents($htaccess_tmpl); |
|
| 187 | + $htAccessContent = file_get_contents($htaccess_tmpl); |
|
| 188 | 188 | } else if (is_multisite() || AUTOPTIMIZE_CACHE_NOGZIP == false) { |
| 189 | - $htAccessContent='<IfModule mod_expires.c> |
|
| 189 | + $htAccessContent = '<IfModule mod_expires.c> |
|
| 190 | 190 | ExpiresActive On |
| 191 | 191 | ExpiresByType text/css A30672000 |
| 192 | 192 | ExpiresByType text/javascript A30672000 |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | </Files> |
| 210 | 210 | </IfModule>'; |
| 211 | 211 | } else { |
| 212 | - $htAccessContent='<IfModule mod_expires.c> |
|
| 212 | + $htAccessContent = '<IfModule mod_expires.c> |
|
| 213 | 213 | ExpiresActive On |
| 214 | 214 | ExpiresByType text/css A30672000 |
| 215 | 215 | ExpiresByType text/javascript A30672000 |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | </Files> |
| 233 | 233 | </IfModule>'; |
| 234 | 234 | } |
| 235 | - @file_put_contents($htAccess,$htAccessContent); |
|
| 235 | + @file_put_contents($htAccess, $htAccessContent); |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | // All OK |
@@ -241,22 +241,22 @@ discard block |
||
| 241 | 241 | |
| 242 | 242 | static function checkCacheDir($dir) { |
| 243 | 243 | // Check and create if not exists |
| 244 | - if(!file_exists($dir)) { |
|
| 245 | - @mkdir($dir,0775,true); |
|
| 246 | - if(!file_exists($dir)) { |
|
| 244 | + if (!file_exists($dir)) { |
|
| 245 | + @mkdir($dir, 0775, true); |
|
| 246 | + if (!file_exists($dir)) { |
|
| 247 | 247 | return false; |
| 248 | 248 | } |
| 249 | 249 | } |
| 250 | 250 | |
| 251 | 251 | // check if we can now write |
| 252 | - if(!is_writable($dir)) { |
|
| 252 | + if (!is_writable($dir)) { |
|
| 253 | 253 | return false; |
| 254 | 254 | } |
| 255 | 255 | |
| 256 | 256 | // and write index.html here to avoid prying eyes |
| 257 | - $indexFile=$dir.'/index.html'; |
|
| 258 | - if(!is_file($indexFile)) { |
|
| 259 | - @file_put_contents($indexFile,'<html><head><meta name="robots" content="noindex, nofollow"></head><body>Generated by <a href="http://wordpress.org/extend/plugins/autoptimize/" rel="nofollow">Autoptimize</a></body></html>'); |
|
| 257 | + $indexFile = $dir.'/index.html'; |
|
| 258 | + if (!is_file($indexFile)) { |
|
| 259 | + @file_put_contents($indexFile, '<html><head><meta name="robots" content="noindex, nofollow"></head><body>Generated by <a href="http://wordpress.org/extend/plugins/autoptimize/" rel="nofollow">Autoptimize</a></body></html>'); |
|
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | return true; |
@@ -3,48 +3,48 @@ discard block |
||
| 3 | 3 | * below code handles updates and is only included by autoptimize.php if/ when needed |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
|
| 6 | +if (!defined('ABSPATH')) exit; // Exit if accessed directly |
|
| 7 | 7 | |
| 8 | 8 | $majorUp = false; |
| 9 | -$autoptimize_major_version=substr($autoptimize_db_version,0,3); |
|
| 9 | +$autoptimize_major_version = substr($autoptimize_db_version, 0, 3); |
|
| 10 | 10 | |
| 11 | -switch($autoptimize_major_version) { |
|
| 11 | +switch ($autoptimize_major_version) { |
|
| 12 | 12 | case "1.6": |
| 13 | 13 | // from back in the days when I did not yet consider multisite |
| 14 | 14 | // if user was on version 1.6.x, force advanced options to be shown by default |
| 15 | - update_option('autoptimize_show_adv','1'); |
|
| 15 | + update_option('autoptimize_show_adv', '1'); |
|
| 16 | 16 | |
| 17 | 17 | // and remove old options |
| 18 | - $to_delete_options=array("autoptimize_cdn_css","autoptimize_cdn_css_url","autoptimize_cdn_js","autoptimize_cdn_js_url","autoptimize_cdn_img","autoptimize_cdn_img_url","autoptimize_css_yui","autoptimize_js_yui"); |
|
| 18 | + $to_delete_options = array("autoptimize_cdn_css", "autoptimize_cdn_css_url", "autoptimize_cdn_js", "autoptimize_cdn_js_url", "autoptimize_cdn_img", "autoptimize_cdn_img_url", "autoptimize_css_yui", "autoptimize_js_yui"); |
|
| 19 | 19 | foreach ($to_delete_options as $del_opt) { |
| 20 | - delete_option( $del_opt ); |
|
| 20 | + delete_option($del_opt); |
|
| 21 | 21 | } |
| 22 | 22 | $majorUp = true; |
| 23 | 23 | case "1.7": |
| 24 | 24 | // force 3.8 dashicons in CSS exclude options when upgrading from 1.7 to 1.8 |
| 25 | - if ( !is_multisite() ) { |
|
| 25 | + if (!is_multisite()) { |
|
| 26 | 26 | $css_exclude = get_option('autoptimize_css_exclude'); |
| 27 | 27 | if (empty($css_exclude)) { |
| 28 | 28 | $css_exclude = "admin-bar.min.css, dashicons.min.css"; |
| 29 | - } else if (strpos($css_exclude,"dashicons.min.css")===false) { |
|
| 29 | + } else if (strpos($css_exclude, "dashicons.min.css") === false) { |
|
| 30 | 30 | $css_exclude .= ", dashicons.min.css"; |
| 31 | 31 | } |
| 32 | - update_option('autoptimize_css_exclude',$css_exclude); |
|
| 32 | + update_option('autoptimize_css_exclude', $css_exclude); |
|
| 33 | 33 | } else { |
| 34 | 34 | global $wpdb; |
| 35 | - $blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" ); |
|
| 35 | + $blog_ids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs"); |
|
| 36 | 36 | $original_blog_id = get_current_blog_id(); |
| 37 | - foreach ( $blog_ids as $blog_id ) { |
|
| 38 | - switch_to_blog( $blog_id ); |
|
| 37 | + foreach ($blog_ids as $blog_id) { |
|
| 38 | + switch_to_blog($blog_id); |
|
| 39 | 39 | $css_exclude = get_option('autoptimize_css_exclude'); |
| 40 | 40 | if (empty($css_exclude)) { |
| 41 | 41 | $css_exclude = "admin-bar.min.css, dashicons.min.css"; |
| 42 | - } else if (strpos($css_exclude,"dashicons.min.css")===false) { |
|
| 42 | + } else if (strpos($css_exclude, "dashicons.min.css") === false) { |
|
| 43 | 43 | $css_exclude .= ", dashicons.min.css"; |
| 44 | 44 | } |
| 45 | - update_option('autoptimize_css_exclude',$css_exclude); |
|
| 45 | + update_option('autoptimize_css_exclude', $css_exclude); |
|
| 46 | 46 | } |
| 47 | - switch_to_blog( $original_blog_id ); |
|
| 47 | + switch_to_blog($original_blog_id); |
|
| 48 | 48 | } |
| 49 | 49 | $majorUp = true; |
| 50 | 50 | case "1.9": |
@@ -52,24 +52,24 @@ discard block |
||
| 52 | 52 | * 2.0 will not aggregate inline CSS/JS by default, but we want users |
| 53 | 53 | * upgrading from 1.9 to keep their inline code aggregated by default. |
| 54 | 54 | */ |
| 55 | - if ( !is_multisite() ) { |
|
| 56 | - update_option('autoptimize_css_include_inline','on'); |
|
| 57 | - update_option('autoptimize_js_include_inline','on'); |
|
| 55 | + if (!is_multisite()) { |
|
| 56 | + update_option('autoptimize_css_include_inline', 'on'); |
|
| 57 | + update_option('autoptimize_js_include_inline', 'on'); |
|
| 58 | 58 | } else { |
| 59 | 59 | global $wpdb; |
| 60 | - $blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" ); |
|
| 60 | + $blog_ids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs"); |
|
| 61 | 61 | $original_blog_id = get_current_blog_id(); |
| 62 | - foreach ( $blog_ids as $blog_id ) { |
|
| 63 | - switch_to_blog( $blog_id ); |
|
| 64 | - update_option('autoptimize_css_include_inline','on'); |
|
| 65 | - update_option('autoptimize_js_include_inline','on'); |
|
| 62 | + foreach ($blog_ids as $blog_id) { |
|
| 63 | + switch_to_blog($blog_id); |
|
| 64 | + update_option('autoptimize_css_include_inline', 'on'); |
|
| 65 | + update_option('autoptimize_js_include_inline', 'on'); |
|
| 66 | 66 | } |
| 67 | - switch_to_blog( $original_blog_id ); |
|
| 67 | + switch_to_blog($original_blog_id); |
|
| 68 | 68 | } |
| 69 | 69 | $majorUp = true; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | -if ( $majorUp === true ) { |
|
| 72 | +if ($majorUp === true) { |
|
| 73 | 73 | // clear cache and notify user to check result if major upgrade |
| 74 | 74 | autoptimizeCache::clearall(); |
| 75 | 75 | add_action('admin_notices', 'autoptimize_update_config_notice'); |
@@ -3,24 +3,24 @@ discard block |
||
| 3 | 3 | Classlessly add a "more tools" tab to promote (future) AO addons and/ or affiliate services |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
|
| 6 | +if (!defined('ABSPATH')) exit; // Exit if accessed directly |
|
| 7 | 7 | |
| 8 | 8 | add_action('admin_init', 'ao_partner_tabs_preinit'); |
| 9 | 9 | function ao_partner_tabs_preinit() { |
| 10 | - if (apply_filters('autoptimize_filter_show_partner_tabs',true)) { |
|
| 11 | - add_filter('autoptimize_filter_settingsscreen_tabs','ao_add_partner_tabs'); |
|
| 10 | + if (apply_filters('autoptimize_filter_show_partner_tabs', true)) { |
|
| 11 | + add_filter('autoptimize_filter_settingsscreen_tabs', 'ao_add_partner_tabs'); |
|
| 12 | 12 | } |
| 13 | 13 | } |
| 14 | 14 | |
| 15 | 15 | function ao_add_partner_tabs($in) { |
| 16 | - $in=array_merge($in,array('ao_partners' => __('Optimize More!','autoptimize'))); |
|
| 16 | + $in = array_merge($in, array('ao_partners' => __('Optimize More!', 'autoptimize'))); |
|
| 17 | 17 | return $in; |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -add_action('admin_menu','ao_partners_init'); |
|
| 20 | +add_action('admin_menu', 'ao_partners_init'); |
|
| 21 | 21 | function ao_partners_init() { |
| 22 | - if (apply_filters('autoptimize_filter_show_partner_tabs',true)) { |
|
| 23 | - $hook=add_submenu_page(NULL,'AO partner','AO partner','manage_options','ao_partners','ao_partners'); |
|
| 22 | + if (apply_filters('autoptimize_filter_show_partner_tabs', true)) { |
|
| 23 | + $hook = add_submenu_page(NULL, 'AO partner', 'AO partner', 'manage_options', 'ao_partners', 'ao_partners'); |
|
| 24 | 24 | // register_settings here as well if needed |
| 25 | 25 | } |
| 26 | 26 | } |
@@ -71,10 +71,10 @@ discard block |
||
| 71 | 71 | } |
| 72 | 72 | </style> |
| 73 | 73 | <div class="wrap"> |
| 74 | - <h1><?php _e('Autoptimize Settings','autoptimize'); ?></h1> |
|
| 74 | + <h1><?php _e('Autoptimize Settings', 'autoptimize'); ?></h1> |
|
| 75 | 75 | <?php echo autoptimizeConfig::ao_admin_tabs(); ?> |
| 76 | 76 | <?php |
| 77 | - echo '<h2>'. __("These Autoptimize power-ups and related services will improve your site's performance even more!",'autoptimize') . '</h2>'; |
|
| 77 | + echo '<h2>'.__("These Autoptimize power-ups and related services will improve your site's performance even more!", 'autoptimize').'</h2>'; |
|
| 78 | 78 | ?> |
| 79 | 79 | <div> |
| 80 | 80 | <?php getAOPartnerFeed(); ?> |
@@ -84,32 +84,32 @@ discard block |
||
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | function getAOPartnerFeed() { |
| 87 | - $noFeedText=__( 'Have a look at <a href="http://optimizingmatters.com/">optimizingmatters.com</a> for Autoptimize power-ups!', 'autoptimize' ); |
|
| 87 | + $noFeedText = __('Have a look at <a href="http://optimizingmatters.com/">optimizingmatters.com</a> for Autoptimize power-ups!', 'autoptimize'); |
|
| 88 | 88 | |
| 89 | - if (apply_filters('autoptimize_settingsscreen_remotehttp',true)) { |
|
| 90 | - $rss = fetch_feed( "http://feeds.feedburner.com/OptimizingMattersDownloads" ); |
|
| 89 | + if (apply_filters('autoptimize_settingsscreen_remotehttp', true)) { |
|
| 90 | + $rss = fetch_feed("http://feeds.feedburner.com/OptimizingMattersDownloads"); |
|
| 91 | 91 | $maxitems = 0; |
| 92 | 92 | |
| 93 | - if ( ! is_wp_error( $rss ) ) { |
|
| 94 | - $maxitems = $rss->get_item_quantity( 20 ); |
|
| 95 | - $rss_items = $rss->get_items( 0, $maxitems ); |
|
| 93 | + if (!is_wp_error($rss)) { |
|
| 94 | + $maxitems = $rss->get_item_quantity(20); |
|
| 95 | + $rss_items = $rss->get_items(0, $maxitems); |
|
| 96 | 96 | } ?> |
| 97 | 97 | <ul> |
| 98 | 98 | <?php |
| 99 | - if ( $maxitems == 0 ) { |
|
| 99 | + if ($maxitems == 0) { |
|
| 100 | 100 | echo $noFeedText; |
| 101 | 101 | } else { |
| 102 | - foreach ( $rss_items as $item ) : |
|
| 103 | - $itemURL = esc_url( $item->get_permalink() ); ?> |
|
| 102 | + foreach ($rss_items as $item) : |
|
| 103 | + $itemURL = esc_url($item->get_permalink()); ?> |
|
| 104 | 104 | <li class="itemDetail"> |
| 105 | - <h3 class="itemTitle"><a href="<?php echo $itemURL; ?>" target="_blank"><?php echo esc_html( $item->get_title() ); ?></a></h3> |
|
| 105 | + <h3 class="itemTitle"><a href="<?php echo $itemURL; ?>" target="_blank"><?php echo esc_html($item->get_title()); ?></a></h3> |
|
| 106 | 106 | <?php |
| 107 | - if (($enclosure = $item->get_enclosure()) && (strpos($enclosure->get_type(),"image")!==false) ) { |
|
| 108 | - $itemImgURL=esc_url($enclosure->get_link()); |
|
| 107 | + if (($enclosure = $item->get_enclosure()) && (strpos($enclosure->get_type(), "image") !== false)) { |
|
| 108 | + $itemImgURL = esc_url($enclosure->get_link()); |
|
| 109 | 109 | echo "<div class=\"itemImage\"><a href=\"".$itemURL."\" target=\"_blank\"><img src=\"".$itemImgURL."\"/></a></div>"; |
| 110 | 110 | } |
| 111 | 111 | ?> |
| 112 | - <div class="itemDescription"><?php echo wp_kses_post($item -> get_description() ); ?></div> |
|
| 112 | + <div class="itemDescription"><?php echo wp_kses_post($item -> get_description()); ?></div> |
|
| 113 | 113 | <div class="itemButtonRow"><div class="itemButton button-secondary"><a href="<?php echo $itemURL; ?>" target="_blank">More info</a></div></div> |
| 114 | 114 | </li> |
| 115 | 115 | <?php endforeach; ?> |
@@ -2,55 +2,55 @@ |
||
| 2 | 2 | // flush as many page cache plugin's caches as possible |
| 3 | 3 | // hyper cache and gator cache hook into AO, so we don't need to :-) |
| 4 | 4 | |
| 5 | -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
|
| 5 | +if (!defined('ABSPATH')) exit; // Exit if accessed directly |
|
| 6 | 6 | |
| 7 | 7 | function autoptimize_flush_pagecache() { |
| 8 | - if(function_exists('wp_cache_clear_cache')) { |
|
| 8 | + if (function_exists('wp_cache_clear_cache')) { |
|
| 9 | 9 | if (is_multisite()) { |
| 10 | 10 | $blog_id = get_current_blog_id(); |
| 11 | 11 | wp_cache_clear_cache($blog_id); |
| 12 | 12 | } else { |
| 13 | 13 | wp_cache_clear_cache(); |
| 14 | 14 | } |
| 15 | - } else if ( has_action('cachify_flush_cache') ) { |
|
| 15 | + } else if (has_action('cachify_flush_cache')) { |
|
| 16 | 16 | do_action('cachify_flush_cache'); |
| 17 | - } else if ( function_exists('w3tc_pgcache_flush') ) { |
|
| 17 | + } else if (function_exists('w3tc_pgcache_flush')) { |
|
| 18 | 18 | w3tc_pgcache_flush(); |
| 19 | - } else if ( function_exists('wp_fast_cache_bulk_delete_all') ) { |
|
| 19 | + } else if (function_exists('wp_fast_cache_bulk_delete_all')) { |
|
| 20 | 20 | wp_fast_cache_bulk_delete_all(); // still to retest |
| 21 | 21 | } else if (class_exists("WpFastestCache")) { |
| 22 | 22 | $wpfc = new WpFastestCache(); |
| 23 | 23 | $wpfc -> deleteCache(); |
| 24 | - } else if ( class_exists("c_ws_plugin__qcache_purging_routines") ) { |
|
| 24 | + } else if (class_exists("c_ws_plugin__qcache_purging_routines")) { |
|
| 25 | 25 | c_ws_plugin__qcache_purging_routines::purge_cache_dir(); // quick cache, still to retest |
| 26 | - } else if ( class_exists("zencache") ) { |
|
| 26 | + } else if (class_exists("zencache")) { |
|
| 27 | 27 | zencache::clear(); |
| 28 | - } else if ( class_exists("comet_cache") ) { |
|
| 28 | + } else if (class_exists("comet_cache")) { |
|
| 29 | 29 | comet_cache::clear(); |
| 30 | - } else if ( class_exists("WpeCommon") ) { |
|
| 31 | - if ( apply_filters('autoptimize_flush_wpengine_aggressive', false) ) { |
|
| 32 | - if ( method_exists( "WpeCommon", "purge_memcached" ) ) { |
|
| 30 | + } else if (class_exists("WpeCommon")) { |
|
| 31 | + if (apply_filters('autoptimize_flush_wpengine_aggressive', false)) { |
|
| 32 | + if (method_exists("WpeCommon", "purge_memcached")) { |
|
| 33 | 33 | WpeCommon::purge_memcached(); |
| 34 | 34 | } |
| 35 | - if ( method_exists( "WpeCommon", "clear_maxcdn_cache" ) ) { |
|
| 35 | + if (method_exists("WpeCommon", "clear_maxcdn_cache")) { |
|
| 36 | 36 | WpeCommon::clear_maxcdn_cache(); |
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | - if ( method_exists( "WpeCommon", "purge_varnish_cache" ) ) { |
|
| 39 | + if (method_exists("WpeCommon", "purge_varnish_cache")) { |
|
| 40 | 40 | WpeCommon::purge_varnish_cache(); |
| 41 | 41 | } |
| 42 | - } else if ( function_exists('sg_cachepress_purge_cache') ) { |
|
| 42 | + } else if (function_exists('sg_cachepress_purge_cache')) { |
|
| 43 | 43 | sg_cachepress_purge_cache(); |
| 44 | - } else if(file_exists(WP_CONTENT_DIR.'/wp-cache-config.php') && function_exists('prune_super_cache')){ |
|
| 44 | + } else if (file_exists(WP_CONTENT_DIR.'/wp-cache-config.php') && function_exists('prune_super_cache')) { |
|
| 45 | 45 | // fallback for WP-Super-Cache |
| 46 | 46 | global $cache_path; |
| 47 | 47 | if (is_multisite()) { |
| 48 | 48 | $blog_id = get_current_blog_id(); |
| 49 | - prune_super_cache( get_supercache_dir( $blog_id ), true ); |
|
| 50 | - prune_super_cache( $cache_path . 'blogs/', true ); |
|
| 49 | + prune_super_cache(get_supercache_dir($blog_id), true); |
|
| 50 | + prune_super_cache($cache_path.'blogs/', true); |
|
| 51 | 51 | } else { |
| 52 | - prune_super_cache($cache_path.'supercache/',true); |
|
| 53 | - prune_super_cache($cache_path,true); |
|
| 52 | + prune_super_cache($cache_path.'supercache/', true); |
|
| 53 | + prune_super_cache($cache_path, true); |
|
| 54 | 54 | } |
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | 57 | \ No newline at end of file |
@@ -1,9 +1,9 @@ discard block |
||
| 1 | 1 | <?php exit; |
| 2 | 2 | |
| 3 | 3 | //Check everything exists before using it |
| 4 | -if(!isset($_SERVER['HTTP_ACCEPT_ENCODING'])) |
|
| 4 | +if (!isset($_SERVER['HTTP_ACCEPT_ENCODING'])) |
|
| 5 | 5 | $_SERVER['HTTP_ACCEPT_ENCODING'] = ''; |
| 6 | -if(!isset($_SERVER['HTTP_USER_AGENT'])) |
|
| 6 | +if (!isset($_SERVER['HTTP_USER_AGENT'])) |
|
| 7 | 7 | $_SERVER['HTTP_USER_AGENT'] = ''; |
| 8 | 8 | |
| 9 | 9 | // Determine supported compression method |
@@ -27,27 +27,27 @@ discard block |
||
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | //Some servers compress the output of PHP - Don't break in those cases |
| 30 | -if(ini_get('output_handler') == 'ob_gzhandler' || ini_get('zlib.output_compression') == 1) |
|
| 30 | +if (ini_get('output_handler') == 'ob_gzhandler' || ini_get('zlib.output_compression') == 1) |
|
| 31 | 31 | $encoding = 'none'; |
| 32 | 32 | |
| 33 | 33 | //Get data |
| 34 | 34 | $contents = file_get_contents(__FILE__.'.'.$encoding); |
| 35 | 35 | |
| 36 | 36 | // first check if we have to send 304 |
| 37 | -$eTag=md5($contents); |
|
| 38 | -$modTime=filemtime(__FILE__.'.none'); |
|
| 37 | +$eTag = md5($contents); |
|
| 38 | +$modTime = filemtime(__FILE__.'.none'); |
|
| 39 | 39 | |
| 40 | -$eTagMatch = (isset($_SERVER['HTTP_IF_NONE_MATCH']) && strpos($_SERVER['HTTP_IF_NONE_MATCH'],$eTag)); |
|
| 40 | +$eTagMatch = (isset($_SERVER['HTTP_IF_NONE_MATCH']) && strpos($_SERVER['HTTP_IF_NONE_MATCH'], $eTag)); |
|
| 41 | 41 | $modTimeMatch = (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) === $modTime); |
| 42 | 42 | |
| 43 | -if (($modTimeMatch)||($eTagMatch)) { |
|
| 43 | +if (($modTimeMatch) || ($eTagMatch)) { |
|
| 44 | 44 | header('HTTP/1.1 304 Not Modified'); |
| 45 | 45 | header('Connection: close'); |
| 46 | 46 | } else { |
| 47 | 47 | // send all sorts of headers |
| 48 | - $expireTime=60*60*24*356; // 1y max according to RFC |
|
| 48 | + $expireTime = 60*60*24*356; // 1y max according to RFC |
|
| 49 | 49 | |
| 50 | - if(isset($encoding) && $encoding != 'none') |
|
| 50 | + if (isset($encoding) && $encoding != 'none') |
|
| 51 | 51 | { |
| 52 | 52 | header('Content-Encoding: '.$encoding); |
| 53 | 53 | } |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | header('Content-type: %%CONTENT%%; charset=utf-8'); |
| 57 | 57 | header('Cache-Control: max-age='.$expireTime.', public, immutable'); |
| 58 | 58 | header('Expires: '.gmdate('D, d M Y H:i:s', time() + $expireTime).' GMT'); //10 years |
| 59 | - header('ETag: ' . $eTag); |
|
| 59 | + header('ETag: '.$eTag); |
|
| 60 | 60 | header('Last-Modified: '.gmdate('D, d M Y H:i:s', $modTime).' GMT'); |
| 61 | 61 | |
| 62 | 62 | // send output |
@@ -1,9 +1,9 @@ discard block |
||
| 1 | 1 | <?php exit; |
| 2 | 2 | |
| 3 | 3 | //Check everything exists before using it |
| 4 | -if(!isset($_SERVER['HTTP_ACCEPT_ENCODING'])) |
|
| 4 | +if (!isset($_SERVER['HTTP_ACCEPT_ENCODING'])) |
|
| 5 | 5 | $_SERVER['HTTP_ACCEPT_ENCODING'] = ''; |
| 6 | -if(!isset($_SERVER['HTTP_USER_AGENT'])) |
|
| 6 | +if (!isset($_SERVER['HTTP_USER_AGENT'])) |
|
| 7 | 7 | $_SERVER['HTTP_USER_AGENT'] = ''; |
| 8 | 8 | |
| 9 | 9 | // Determine supported compression method |
@@ -27,16 +27,16 @@ discard block |
||
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | //Some servers compress the output of PHP - Don't break in those cases |
| 30 | -if(ini_get('output_handler') == 'ob_gzhandler' || ini_get('zlib.output_compression') == 1) |
|
| 30 | +if (ini_get('output_handler') == 'ob_gzhandler' || ini_get('zlib.output_compression') == 1) |
|
| 31 | 31 | $encoding = 'none'; |
| 32 | 32 | |
| 33 | 33 | $iscompressed = file_exists(__FILE__.'.'.$encoding); |
| 34 | -if($encoding != 'none' && $iscompressed == false) |
|
| 34 | +if ($encoding != 'none' && $iscompressed == false) |
|
| 35 | 35 | { |
| 36 | 36 | $flag = ($encoding == 'gzip' ? FORCE_GZIP : FORCE_DEFLATE); |
| 37 | 37 | $code = file_get_contents(__FILE__.'.none'); |
| 38 | - $contents = gzencode($code,9,$flag); |
|
| 39 | -}else{ |
|
| 38 | + $contents = gzencode($code, 9, $flag); |
|
| 39 | +} else { |
|
| 40 | 40 | //Get data |
| 41 | 41 | $contents = file_get_contents(__FILE__.'.'.$encoding); |
| 42 | 42 | } |
@@ -44,18 +44,18 @@ discard block |
||
| 44 | 44 | // first check if we have to send 304 |
| 45 | 45 | // inspired by http://www.jonasjohn.de/snippets/php/caching.htm |
| 46 | 46 | |
| 47 | -$eTag=md5($contents); |
|
| 48 | -$modTime=filemtime(__FILE__.'.none'); |
|
| 47 | +$eTag = md5($contents); |
|
| 48 | +$modTime = filemtime(__FILE__.'.none'); |
|
| 49 | 49 | |
| 50 | -$eTagMatch = (isset($_SERVER['HTTP_IF_NONE_MATCH']) && strpos($_SERVER['HTTP_IF_NONE_MATCH'],$eTag)); |
|
| 50 | +$eTagMatch = (isset($_SERVER['HTTP_IF_NONE_MATCH']) && strpos($_SERVER['HTTP_IF_NONE_MATCH'], $eTag)); |
|
| 51 | 51 | $modTimeMatch = (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) === $modTime); |
| 52 | 52 | |
| 53 | -if (($modTimeMatch)||($eTagMatch)) { |
|
| 53 | +if (($modTimeMatch) || ($eTagMatch)) { |
|
| 54 | 54 | header('HTTP/1.1 304 Not Modified'); |
| 55 | 55 | header('Connection: close'); |
| 56 | 56 | } else { |
| 57 | 57 | // send all sorts of headers |
| 58 | - $expireTime=60*60*24*355; // 1y max according to RFC |
|
| 58 | + $expireTime = 60*60*24*355; // 1y max according to RFC |
|
| 59 | 59 | if ($encoding != 'none') { |
| 60 | 60 | header('Content-Encoding: '.$encoding); |
| 61 | 61 | } |
@@ -64,22 +64,22 @@ discard block |
||
| 64 | 64 | header('Content-type: %%CONTENT%%; charset=utf-8'); |
| 65 | 65 | header('Cache-Control: max-age='.$expireTime.', public, immutable'); |
| 66 | 66 | header('Expires: '.gmdate('D, d M Y H:i:s', time() + $expireTime).' GMT'); |
| 67 | - header('ETag: ' . $eTag); |
|
| 67 | + header('ETag: '.$eTag); |
|
| 68 | 68 | header('Last-Modified: '.gmdate('D, d M Y H:i:s', $modTime).' GMT'); |
| 69 | 69 | |
| 70 | 70 | // send output |
| 71 | 71 | echo $contents; |
| 72 | 72 | |
| 73 | 73 | //And write to filesystem cache if not done yet |
| 74 | - if($encoding != 'none' && $iscompressed == false) |
|
| 74 | + if ($encoding != 'none' && $iscompressed == false) |
|
| 75 | 75 | { |
| 76 | 76 | //Write the content we sent |
| 77 | - file_put_contents(__FILE__.'.'.$encoding,$contents); |
|
| 77 | + file_put_contents(__FILE__.'.'.$encoding, $contents); |
|
| 78 | 78 | |
| 79 | 79 | //And write the new content |
| 80 | 80 | $flag = ($encoding == 'gzip' ? FORCE_DEFLATE : FORCE_GZIP); |
| 81 | 81 | $ext = ($encoding == 'gzip' ? 'deflate' : 'gzip'); |
| 82 | - $contents = gzencode($code,9,$flag); |
|
| 83 | - file_put_contents(__FILE__.'.'.$ext,$contents); |
|
| 82 | + $contents = gzencode($code, 9, $flag); |
|
| 83 | + file_put_contents(__FILE__.'.'.$ext, $contents); |
|
| 84 | 84 | } |
| 85 | 85 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
|
| 2 | +if (!defined('ABSPATH')) exit; // Exit if accessed directly |
|
| 3 | 3 | |
| 4 | 4 | abstract class autoptimizeBase { |
| 5 | 5 | protected $content = ''; |
@@ -23,37 +23,37 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | //Converts an URL to a full path |
| 25 | 25 | protected function getpath($url) { |
| 26 | - $url=apply_filters( 'autoptimize_filter_cssjs_alter_url', $url); |
|
| 26 | + $url = apply_filters('autoptimize_filter_cssjs_alter_url', $url); |
|
| 27 | 27 | |
| 28 | - if (strpos($url,'%')!==false) { |
|
| 29 | - $url=urldecode($url); |
|
| 28 | + if (strpos($url, '%') !== false) { |
|
| 29 | + $url = urldecode($url); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | - $siteHost=parse_url(AUTOPTIMIZE_WP_SITE_URL,PHP_URL_HOST); |
|
| 33 | - $contentHost=parse_url(AUTOPTIMIZE_WP_ROOT_URL,PHP_URL_HOST); |
|
| 32 | + $siteHost = parse_url(AUTOPTIMIZE_WP_SITE_URL, PHP_URL_HOST); |
|
| 33 | + $contentHost = parse_url(AUTOPTIMIZE_WP_ROOT_URL, PHP_URL_HOST); |
|
| 34 | 34 | |
| 35 | 35 | // normalize |
| 36 | - if (strpos($url,'//')===0) { |
|
| 36 | + if (strpos($url, '//') === 0) { |
|
| 37 | 37 | if (is_ssl()) { |
| 38 | 38 | $url = "https:".$url; |
| 39 | 39 | } else { |
| 40 | 40 | $url = "http:".$url; |
| 41 | 41 | } |
| 42 | - } else if ((strpos($url,'//')===false) && (strpos($url,$siteHost)===false)) { |
|
| 42 | + } else if ((strpos($url, '//') === false) && (strpos($url, $siteHost) === false)) { |
|
| 43 | 43 | if (AUTOPTIMIZE_WP_SITE_URL === $siteHost) { |
| 44 | 44 | $url = AUTOPTIMIZE_WP_SITE_URL.$url; |
| 45 | 45 | } else { |
| 46 | - $subdir_levels=substr_count(preg_replace("/https?:\/\//","",AUTOPTIMIZE_WP_SITE_URL),"/"); |
|
| 47 | - $url = AUTOPTIMIZE_WP_SITE_URL.str_repeat("/..",$subdir_levels).$url; |
|
| 46 | + $subdir_levels = substr_count(preg_replace("/https?:\/\//", "", AUTOPTIMIZE_WP_SITE_URL), "/"); |
|
| 47 | + $url = AUTOPTIMIZE_WP_SITE_URL.str_repeat("/..", $subdir_levels).$url; |
|
| 48 | 48 | } |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | if ($siteHost !== $contentHost) { |
| 52 | - $url=str_replace(AUTOPTIMIZE_WP_CONTENT_URL,AUTOPTIMIZE_WP_SITE_URL.AUTOPTIMIZE_WP_CONTENT_NAME,$url); |
|
| 52 | + $url = str_replace(AUTOPTIMIZE_WP_CONTENT_URL, AUTOPTIMIZE_WP_SITE_URL.AUTOPTIMIZE_WP_CONTENT_NAME, $url); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | // first check; hostname wp site should be hostname of url |
| 56 | - $thisHost=@parse_url($url,PHP_URL_HOST); |
|
| 56 | + $thisHost = @parse_url($url, PHP_URL_HOST); |
|
| 57 | 57 | if ($thisHost !== $siteHost) { |
| 58 | 58 | /* |
| 59 | 59 | * first try to get all domains from WPML (if available) |
@@ -65,18 +65,18 @@ discard block |
||
| 65 | 65 | |
| 66 | 66 | $multidomainsWPML = apply_filters('wpml_setting', array(), 'language_domains'); |
| 67 | 67 | if (!empty($multidomainsWPML)) { |
| 68 | - $multidomains = array_map(array($this,"ao_getDomain"),$multidomainsWPML); |
|
| 68 | + $multidomains = array_map(array($this, "ao_getDomain"), $multidomainsWPML); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | if (!empty($this->cdn_url)) { |
| 72 | - $multidomains[]=parse_url($this->cdn_url,PHP_URL_HOST); |
|
| 72 | + $multidomains[] = parse_url($this->cdn_url, PHP_URL_HOST); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | $multidomains = apply_filters('autoptimize_filter_cssjs_multidomain', $multidomains); |
| 76 | 76 | |
| 77 | 77 | if (!empty($multidomains)) { |
| 78 | - if (in_array($thisHost,$multidomains)) { |
|
| 79 | - $url=str_replace($thisHost, parse_url(AUTOPTIMIZE_WP_SITE_URL,PHP_URL_HOST), $url); |
|
| 78 | + if (in_array($thisHost, $multidomains)) { |
|
| 79 | + $url = str_replace($thisHost, parse_url(AUTOPTIMIZE_WP_SITE_URL, PHP_URL_HOST), $url); |
|
| 80 | 80 | } else { |
| 81 | 81 | return false; |
| 82 | 82 | } |
@@ -86,22 +86,22 @@ discard block |
||
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | // try to remove "wp root url" from url while not minding http<>https |
| 89 | - $tmp_ao_root = preg_replace('/https?:/','',AUTOPTIMIZE_WP_ROOT_URL); |
|
| 89 | + $tmp_ao_root = preg_replace('/https?:/', '', AUTOPTIMIZE_WP_ROOT_URL); |
|
| 90 | 90 | if ($siteHost !== $contentHost) { |
| 91 | 91 | // as we replaced the content-domain with the site-domain, we should match against that |
| 92 | - $tmp_ao_root = preg_replace('/https?:/','',AUTOPTIMIZE_WP_SITE_URL); |
|
| 92 | + $tmp_ao_root = preg_replace('/https?:/', '', AUTOPTIMIZE_WP_SITE_URL); |
|
| 93 | 93 | } |
| 94 | - $tmp_url = preg_replace('/https?:/','',$url); |
|
| 95 | - $path = str_replace($tmp_ao_root,'',$tmp_url); |
|
| 94 | + $tmp_url = preg_replace('/https?:/', '', $url); |
|
| 95 | + $path = str_replace($tmp_ao_root, '', $tmp_url); |
|
| 96 | 96 | |
| 97 | 97 | // if path starts with :// or //, this is not a URL in the WP context and we have to assume we can't aggregate |
| 98 | - if (preg_match('#^:?//#',$path)) { |
|
| 98 | + if (preg_match('#^:?//#', $path)) { |
|
| 99 | 99 | /** External script/css (adsense, etc) */ |
| 100 | 100 | return false; |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | // prepend with WP_ROOT_DIR to have full path to file |
| 104 | - $path = str_replace('//','/',WP_ROOT_DIR.$path); |
|
| 104 | + $path = str_replace('//', '/', WP_ROOT_DIR.$path); |
|
| 105 | 105 | |
| 106 | 106 | // final check: does file exist and is it readable |
| 107 | 107 | if (file_exists($path) && is_file($path) && is_readable($path)) { |
@@ -114,25 +114,25 @@ discard block |
||
| 114 | 114 | // needed for WPML-filter |
| 115 | 115 | protected function ao_getDomain($in) { |
| 116 | 116 | // make sure the url starts with something vaguely resembling a protocol |
| 117 | - if ((strpos($in,"http")!==0) && (strpos($in,"//")!==0)) { |
|
| 118 | - $in="http://".$in; |
|
| 117 | + if ((strpos($in, "http") !== 0) && (strpos($in, "//") !== 0)) { |
|
| 118 | + $in = "http://".$in; |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | // do the actual parse_url |
| 122 | - $out = parse_url($in,PHP_URL_HOST); |
|
| 122 | + $out = parse_url($in, PHP_URL_HOST); |
|
| 123 | 123 | |
| 124 | 124 | // fallback if parse_url does not understand the url is in fact a url |
| 125 | - if (empty($out)) $out=$in; |
|
| 125 | + if (empty($out)) $out = $in; |
|
| 126 | 126 | |
| 127 | 127 | return $out; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | |
| 131 | 131 | // logger |
| 132 | - protected function ao_logger($logmsg,$appendHTML=true) { |
|
| 132 | + protected function ao_logger($logmsg, $appendHTML = true) { |
|
| 133 | 133 | if ($appendHTML) { |
| 134 | - $logmsg="<!--noptimize--><!-- ".$logmsg." --><!--/noptimize-->"; |
|
| 135 | - $this->content.=$logmsg; |
|
| 134 | + $logmsg = "<!--noptimize--><!-- ".$logmsg." --><!--/noptimize-->"; |
|
| 135 | + $this->content .= $logmsg; |
|
| 136 | 136 | } else { |
| 137 | 137 | error_log("Autoptimize: ".$logmsg); |
| 138 | 138 | } |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | |
| 141 | 141 | // hide everything between noptimize-comment tags |
| 142 | 142 | protected function hide_noptimize($noptimize_in) { |
| 143 | - if ( preg_match( '/<!--\s?noptimize\s?-->/', $noptimize_in ) ) { |
|
| 143 | + if (preg_match('/<!--\s?noptimize\s?-->/', $noptimize_in)) { |
|
| 144 | 144 | $noptimize_out = preg_replace_callback( |
| 145 | 145 | '#<!--\s?noptimize\s?-->.*?<!--\s?/\s?noptimize\s?-->#is', |
| 146 | 146 | create_function( |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | |
| 158 | 158 | // unhide noptimize-tags |
| 159 | 159 | protected function restore_noptimize($noptimize_in) { |
| 160 | - if ( strpos( $noptimize_in, '%%NOPTIMIZE%%' ) !== false ) { |
|
| 160 | + if (strpos($noptimize_in, '%%NOPTIMIZE%%') !== false) { |
|
| 161 | 161 | $noptimize_out = preg_replace_callback( |
| 162 | 162 | '#%%NOPTIMIZE'.AUTOPTIMIZE_HASH.'%%(.*?)%%NOPTIMIZE%%#is', |
| 163 | 163 | create_function( |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | } |
| 174 | 174 | |
| 175 | 175 | protected function hide_iehacks($iehacks_in) { |
| 176 | - if ( strpos( $iehacks_in, '<!--[if' ) !== false ) { |
|
| 176 | + if (strpos($iehacks_in, '<!--[if') !== false) { |
|
| 177 | 177 | $iehacks_out = preg_replace_callback( |
| 178 | 178 | '#<!--\[if.*?\[endif\]-->#is', |
| 179 | 179 | create_function( |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | protected function restore_iehacks($iehacks_in) { |
| 192 | - if ( strpos( $iehacks_in, '%%IEHACK%%' ) !== false ) { |
|
| 192 | + if (strpos($iehacks_in, '%%IEHACK%%') !== false) { |
|
| 193 | 193 | $iehacks_out = preg_replace_callback( |
| 194 | 194 | '#%%IEHACK'.AUTOPTIMIZE_HASH.'%%(.*?)%%IEHACK%%#is', |
| 195 | 195 | create_function( |
@@ -199,13 +199,13 @@ discard block |
||
| 199 | 199 | $iehacks_in |
| 200 | 200 | ); |
| 201 | 201 | } else { |
| 202 | - $iehacks_out=$iehacks_in; |
|
| 202 | + $iehacks_out = $iehacks_in; |
|
| 203 | 203 | } |
| 204 | 204 | return $iehacks_out; |
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | protected function hide_comments($comments_in) { |
| 208 | - if ( strpos( $comments_in, '<!--' ) !== false ) { |
|
| 208 | + if (strpos($comments_in, '<!--') !== false) { |
|
| 209 | 209 | $comments_out = preg_replace_callback( |
| 210 | 210 | '#<!--.*?-->#is', |
| 211 | 211 | create_function( |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | protected function restore_comments($comments_in) { |
| 224 | - if ( strpos( $comments_in, '%%COMMENTS%%' ) !== false ) { |
|
| 224 | + if (strpos($comments_in, '%%COMMENTS%%') !== false) { |
|
| 225 | 225 | $comments_out = preg_replace_callback( |
| 226 | 226 | '#%%COMMENTS'.AUTOPTIMIZE_HASH.'%%(.*?)%%COMMENTS%%#is', |
| 227 | 227 | create_function( |
@@ -231,31 +231,31 @@ discard block |
||
| 231 | 231 | $comments_in |
| 232 | 232 | ); |
| 233 | 233 | } else { |
| 234 | - $comments_out=$comments_in; |
|
| 234 | + $comments_out = $comments_in; |
|
| 235 | 235 | } |
| 236 | 236 | return $comments_out; |
| 237 | 237 | } |
| 238 | 238 | |
| 239 | - protected function url_replace_cdn( $url ) { |
|
| 239 | + protected function url_replace_cdn($url) { |
|
| 240 | 240 | // API filter to change base CDN URL |
| 241 | - $cdn_url = apply_filters( 'autoptimize_filter_base_cdnurl', $this->cdn_url ); |
|
| 241 | + $cdn_url = apply_filters('autoptimize_filter_base_cdnurl', $this->cdn_url); |
|
| 242 | 242 | |
| 243 | - if ( !empty($cdn_url) ) { |
|
| 243 | + if (!empty($cdn_url)) { |
|
| 244 | 244 | // prepend domain-less absolute URL's |
| 245 | - if ( ( substr( $url, 0, 1 ) === '/' ) && ( substr( $url, 1, 1 ) !== '/' ) ) { |
|
| 246 | - $url = rtrim( $cdn_url, '/' ) . $url; |
|
| 245 | + if ((substr($url, 0, 1) === '/') && (substr($url, 1, 1) !== '/')) { |
|
| 246 | + $url = rtrim($cdn_url, '/').$url; |
|
| 247 | 247 | } else { |
| 248 | 248 | // get wordpress base URL |
| 249 | - $WPSiteBreakdown = parse_url( AUTOPTIMIZE_WP_SITE_URL ); |
|
| 250 | - $WPBaseUrl = $WPSiteBreakdown['scheme'] . '://' . $WPSiteBreakdown['host']; |
|
| 251 | - if ( ! empty( $WPSiteBreakdown['port'] ) ) { |
|
| 252 | - $WPBaseUrl .= ":" . $WPSiteBreakdown['port']; |
|
| 249 | + $WPSiteBreakdown = parse_url(AUTOPTIMIZE_WP_SITE_URL); |
|
| 250 | + $WPBaseUrl = $WPSiteBreakdown['scheme'].'://'.$WPSiteBreakdown['host']; |
|
| 251 | + if (!empty($WPSiteBreakdown['port'])) { |
|
| 252 | + $WPBaseUrl .= ":".$WPSiteBreakdown['port']; |
|
| 253 | 253 | } |
| 254 | 254 | // replace full url's with scheme |
| 255 | - $tmp_url = str_replace( $WPBaseUrl, rtrim( $cdn_url, '/' ), $url ); |
|
| 256 | - if ( $tmp_url === $url ) { |
|
| 255 | + $tmp_url = str_replace($WPBaseUrl, rtrim($cdn_url, '/'), $url); |
|
| 256 | + if ($tmp_url === $url) { |
|
| 257 | 257 | // last attempt; replace scheme-less URL's |
| 258 | - $url = str_replace( preg_replace( '/https?:/', '', $WPBaseUrl ), rtrim( $cdn_url, '/' ), $url ); |
|
| 258 | + $url = str_replace(preg_replace('/https?:/', '', $WPBaseUrl), rtrim($cdn_url, '/'), $url); |
|
| 259 | 259 | } else { |
| 260 | 260 | $url = $tmp_url; |
| 261 | 261 | } |
@@ -263,32 +263,32 @@ discard block |
||
| 263 | 263 | } |
| 264 | 264 | |
| 265 | 265 | // allow API filter to alter URL after CDN replacement |
| 266 | - $url = apply_filters( 'autoptimize_filter_base_replace_cdn', $url ); |
|
| 266 | + $url = apply_filters('autoptimize_filter_base_replace_cdn', $url); |
|
| 267 | 267 | return $url; |
| 268 | 268 | } |
| 269 | 269 | |
| 270 | - protected function inject_in_html($payload,$replaceTag) { |
|
| 271 | - if (strpos($this->content,$replaceTag[0])!== false) { |
|
| 272 | - if ($replaceTag[1]==="after") { |
|
| 273 | - $replaceBlock=$replaceTag[0].$payload; |
|
| 274 | - } else if ($replaceTag[1]==="replace"){ |
|
| 275 | - $replaceBlock=$payload; |
|
| 270 | + protected function inject_in_html($payload, $replaceTag) { |
|
| 271 | + if (strpos($this->content, $replaceTag[0]) !== false) { |
|
| 272 | + if ($replaceTag[1] === "after") { |
|
| 273 | + $replaceBlock = $replaceTag[0].$payload; |
|
| 274 | + } else if ($replaceTag[1] === "replace") { |
|
| 275 | + $replaceBlock = $payload; |
|
| 276 | 276 | } else { |
| 277 | - $replaceBlock=$payload.$replaceTag[0]; |
|
| 277 | + $replaceBlock = $payload.$replaceTag[0]; |
|
| 278 | 278 | } |
| 279 | - $this->content = substr_replace($this->content,$replaceBlock,strpos($this->content,$replaceTag[0]),strlen($replaceTag[0])); |
|
| 279 | + $this->content = substr_replace($this->content, $replaceBlock, strpos($this->content, $replaceTag[0]), strlen($replaceTag[0])); |
|
| 280 | 280 | } else { |
| 281 | 281 | $this->content .= $payload; |
| 282 | 282 | if (!$this->tagWarning) { |
| 283 | - $this->content .= "<!--noptimize--><!-- Autoptimize found a problem with the HTML in your Theme, tag \"".str_replace(array("<",">"),"",$replaceTag[0])."\" missing --><!--/noptimize-->"; |
|
| 284 | - $this->tagWarning=true; |
|
| 283 | + $this->content .= "<!--noptimize--><!-- Autoptimize found a problem with the HTML in your Theme, tag \"".str_replace(array("<", ">"), "", $replaceTag[0])."\" missing --><!--/noptimize-->"; |
|
| 284 | + $this->tagWarning = true; |
|
| 285 | 285 | } |
| 286 | 286 | } |
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | protected function isremovable($tag, $removables) { |
| 290 | 290 | foreach ($removables as $match) { |
| 291 | - if (strpos($tag,$match)!==false) { |
|
| 291 | + if (strpos($tag, $match) !== false) { |
|
| 292 | 292 | return true; |
| 293 | 293 | } |
| 294 | 294 | } |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | |
| 298 | 298 | // inject already minified code in optimized JS/CSS |
| 299 | 299 | protected function inject_minified($in) { |
| 300 | - if ( strpos( $in, '%%INJECTLATER%%' ) !== false ) { |
|
| 300 | + if (strpos($in, '%%INJECTLATER%%') !== false) { |
|
| 301 | 301 | $out = preg_replace_callback( |
| 302 | 302 | '#\/\*\!%%INJECTLATER'.AUTOPTIMIZE_HASH.'%%(.*?)%%INJECTLATER%%\*\/#is', |
| 303 | 303 | create_function( |
@@ -349,47 +349,47 @@ discard block |
||
| 349 | 349 | |
| 350 | 350 | protected function minify_single($pathIn) { |
| 351 | 351 | // determine JS or CSS and set var (also mimetype), return false if neither |
| 352 | - if ( $this->str_ends_in($pathIn,".js") === true ) { |
|
| 353 | - $codeType="js"; |
|
| 354 | - $codeMime="text/javascript"; |
|
| 355 | - } else if ( $this->str_ends_in($pathIn,".css") === true ) { |
|
| 356 | - $codeType="css"; |
|
| 357 | - $codeMime="text/css"; |
|
| 352 | + if ($this->str_ends_in($pathIn, ".js") === true) { |
|
| 353 | + $codeType = "js"; |
|
| 354 | + $codeMime = "text/javascript"; |
|
| 355 | + } else if ($this->str_ends_in($pathIn, ".css") === true) { |
|
| 356 | + $codeType = "css"; |
|
| 357 | + $codeMime = "text/css"; |
|
| 358 | 358 | } else { |
| 359 | 359 | return false; |
| 360 | 360 | } |
| 361 | 361 | |
| 362 | 362 | // if min.js or min.css return false |
| 363 | - if (( $this->str_ends_in($pathIn,"-min.".$codeType) === true ) || ( $this->str_ends_in($pathIn,".min.".$codeType) === true ) || ( $this->str_ends_in($pathIn,"js/jquery/jquery.js") === true ) ) { |
|
| 363 | + if (($this->str_ends_in($pathIn, "-min.".$codeType) === true) || ($this->str_ends_in($pathIn, ".min.".$codeType) === true) || ($this->str_ends_in($pathIn, "js/jquery/jquery.js") === true)) { |
|
| 364 | 364 | return false; |
| 365 | 365 | } |
| 366 | 366 | |
| 367 | 367 | // read file, return false if empty |
| 368 | 368 | $_toMinify = file_get_contents($pathIn); |
| 369 | - if ( empty($_toMinify) ) return false; |
|
| 369 | + if (empty($_toMinify)) return false; |
|
| 370 | 370 | |
| 371 | 371 | // check cache |
| 372 | 372 | $_md5hash = "single_".md5($_toMinify); |
| 373 | - $_cache = new autoptimizeCache($_md5hash,$codeType); |
|
| 374 | - if ($_cache->check() ) { |
|
| 373 | + $_cache = new autoptimizeCache($_md5hash, $codeType); |
|
| 374 | + if ($_cache->check()) { |
|
| 375 | 375 | $_CachedMinifiedUrl = AUTOPTIMIZE_CACHE_URL.$_cache->getname(); |
| 376 | 376 | } else { |
| 377 | 377 | // if not in cache first minify |
| 378 | 378 | $_Minified = $_toMinify; |
| 379 | 379 | if ($codeType === "js") { |
| 380 | - if (class_exists('JSMin') && apply_filters( 'autoptimize_js_do_minify' , true)) { |
|
| 381 | - if (@is_callable(array("JSMin","minify"))) { |
|
| 380 | + if (class_exists('JSMin') && apply_filters('autoptimize_js_do_minify', true)) { |
|
| 381 | + if (@is_callable(array("JSMin", "minify"))) { |
|
| 382 | 382 | $tmp_code = trim(JSMin::minify($_toMinify)); |
| 383 | 383 | } |
| 384 | 384 | } |
| 385 | 385 | } else if ($codeType === "css") { |
| 386 | 386 | if (class_exists('Minify_CSS_Compressor')) { |
| 387 | 387 | $tmp_code = trim(Minify_CSS_Compressor::process($_toMinify)); |
| 388 | - } else if(class_exists('CSSmin')) { |
|
| 388 | + } else if (class_exists('CSSmin')) { |
|
| 389 | 389 | $cssmin = new CSSmin(); |
| 390 | - if (method_exists($cssmin,"run")) { |
|
| 390 | + if (method_exists($cssmin, "run")) { |
|
| 391 | 391 | $tmp_code = trim($cssmin->run($_toMinify)); |
| 392 | - } elseif (@is_callable(array($cssmin,"minify"))) { |
|
| 392 | + } elseif (@is_callable(array($cssmin, "minify"))) { |
|
| 393 | 393 | $tmp_code = trim(CssMin::minify($_toMinify)); |
| 394 | 394 | } |
| 395 | 395 | } |
@@ -399,7 +399,7 @@ discard block |
||
| 399 | 399 | unset($tmp_code); |
| 400 | 400 | } |
| 401 | 401 | // and then cache |
| 402 | - $_cache->cache($_Minified,$codeMime); |
|
| 402 | + $_cache->cache($_Minified, $codeMime); |
|
| 403 | 403 | $_CachedMinifiedUrl = AUTOPTIMIZE_CACHE_URL.$_cache->getname(); |
| 404 | 404 | } |
| 405 | 405 | unset($_cache); |
@@ -410,10 +410,10 @@ discard block |
||
| 410 | 410 | return $_CachedMinifiedUrl; |
| 411 | 411 | } |
| 412 | 412 | |
| 413 | - protected function str_ends_in($haystack,$needle) { |
|
| 413 | + protected function str_ends_in($haystack, $needle) { |
|
| 414 | 414 | $needleLength = strlen($needle); |
| 415 | 415 | $haystackLength = strlen($haystack); |
| 416 | - $lastPos=strrpos($haystack,$needle); |
|
| 416 | + $lastPos = strrpos($haystack, $needle); |
|
| 417 | 417 | if ($lastPos === $haystackLength - $needleLength) { |
| 418 | 418 | return true; |
| 419 | 419 | } else { |
@@ -4,64 +4,64 @@ discard block |
||
| 4 | 4 | * new in Autoptimize 2.2 |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
|
| 7 | +if (!defined('ABSPATH')) exit; // Exit if accessed directly |
|
| 8 | 8 | |
| 9 | -function ao_js_snippetcacher($jsin,$jsfilename) { |
|
| 9 | +function ao_js_snippetcacher($jsin, $jsfilename) { |
|
| 10 | 10 | $md5hash = "snippet_".md5($jsin); |
| 11 | - $ccheck = new autoptimizeCache($md5hash,'js'); |
|
| 12 | - if($ccheck->check()) { |
|
| 11 | + $ccheck = new autoptimizeCache($md5hash, 'js'); |
|
| 12 | + if ($ccheck->check()) { |
|
| 13 | 13 | $scriptsrc = $ccheck->retrieve(); |
| 14 | 14 | } else { |
| 15 | - if ( (strpos($jsfilename,"min.js") === false) && ( strpos($jsfilename,"js/jquery/jquery.js") === false ) && ( str_replace(apply_filters('autoptimize_filter_js_consider_minified',false), '', $jsfilename) === $jsfilename ) ) { |
|
| 16 | - if(class_exists('JSMin')) { |
|
| 15 | + if ((strpos($jsfilename, "min.js") === false) && (strpos($jsfilename, "js/jquery/jquery.js") === false) && (str_replace(apply_filters('autoptimize_filter_js_consider_minified', false), '', $jsfilename) === $jsfilename)) { |
|
| 16 | + if (class_exists('JSMin')) { |
|
| 17 | 17 | $tmp_jscode = trim(JSMin::minify($jsin)); |
| 18 | 18 | if (!empty($tmp_jscode)) { |
| 19 | 19 | $scriptsrc = $tmp_jscode; |
| 20 | 20 | unset($tmp_jscode); |
| 21 | 21 | } else { |
| 22 | - $scriptsrc=$jsin; |
|
| 22 | + $scriptsrc = $jsin; |
|
| 23 | 23 | } |
| 24 | 24 | } else { |
| 25 | - $scriptsrc=$jsin; |
|
| 25 | + $scriptsrc = $jsin; |
|
| 26 | 26 | } |
| 27 | 27 | } else { |
| 28 | 28 | // do some housekeeping here to remove comments & linebreaks and stuff |
| 29 | - $scriptsrc=preg_replace("#^\s*\/\/.*$#Um","",$jsin); |
|
| 30 | - $scriptsrc=preg_replace("#^\s*\/\*[^!].*\*\/\s?#Us","",$scriptsrc); |
|
| 31 | - $scriptsrc=preg_replace("#(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+#", "\n", $scriptsrc); |
|
| 29 | + $scriptsrc = preg_replace("#^\s*\/\/.*$#Um", "", $jsin); |
|
| 30 | + $scriptsrc = preg_replace("#^\s*\/\*[^!].*\*\/\s?#Us", "", $scriptsrc); |
|
| 31 | + $scriptsrc = preg_replace("#(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+#", "\n", $scriptsrc); |
|
| 32 | 32 | |
| 33 | - if ((substr($scriptsrc,-1,1)!==";")&&(substr($scriptsrc,-1,1)!=="}")) { |
|
| 34 | - $scriptsrc.=";"; |
|
| 33 | + if ((substr($scriptsrc, -1, 1) !== ";") && (substr($scriptsrc, -1, 1) !== "}")) { |
|
| 34 | + $scriptsrc .= ";"; |
|
| 35 | 35 | } |
| 36 | 36 | } |
| 37 | - if ( !empty($jsfilename) && str_replace( apply_filters('autoptimize_filter_js_speedup_cache',false), '', $jsfilename ) === $jsfilename ) { |
|
| 37 | + if (!empty($jsfilename) && str_replace(apply_filters('autoptimize_filter_js_speedup_cache', false), '', $jsfilename) === $jsfilename) { |
|
| 38 | 38 | // don't cache inline CSS or if filter says no |
| 39 | - $ccheck->cache($scriptsrc,'text/javascript'); |
|
| 39 | + $ccheck->cache($scriptsrc, 'text/javascript'); |
|
| 40 | 40 | } |
| 41 | 41 | } |
| 42 | 42 | unset($ccheck); |
| 43 | 43 | |
| 44 | - if (get_option("autoptimize_js_trycatch")==="on") { |
|
| 45 | - $scriptsrc="try{".$scriptsrc."}catch(e){}"; |
|
| 44 | + if (get_option("autoptimize_js_trycatch") === "on") { |
|
| 45 | + $scriptsrc = "try{".$scriptsrc."}catch(e){}"; |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | return $scriptsrc; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | -function ao_css_snippetcacher($cssin,$cssfilename) { |
|
| 51 | +function ao_css_snippetcacher($cssin, $cssfilename) { |
|
| 52 | 52 | $md5hash = "snippet_".md5($cssin); |
| 53 | - $ccheck = new autoptimizeCache($md5hash,'css'); |
|
| 54 | - if($ccheck->check()) { |
|
| 53 | + $ccheck = new autoptimizeCache($md5hash, 'css'); |
|
| 54 | + if ($ccheck->check()) { |
|
| 55 | 55 | $stylesrc = $ccheck->retrieve(); |
| 56 | 56 | } else { |
| 57 | - if ( ( strpos($cssfilename,"min.css") === false ) && ( str_replace( apply_filters('autoptimize_filter_css_consider_minified',false), '', $cssfilename ) === $cssfilename ) ) { |
|
| 57 | + if ((strpos($cssfilename, "min.css") === false) && (str_replace(apply_filters('autoptimize_filter_css_consider_minified', false), '', $cssfilename) === $cssfilename)) { |
|
| 58 | 58 | if (class_exists('Minify_CSS_Compressor')) { |
| 59 | 59 | $tmp_code = trim(Minify_CSS_Compressor::process($cssin)); |
| 60 | - } else if(class_exists('CSSmin')) { |
|
| 60 | + } else if (class_exists('CSSmin')) { |
|
| 61 | 61 | $cssmin = new CSSmin(); |
| 62 | - if (method_exists($cssmin,"run")) { |
|
| 62 | + if (method_exists($cssmin, "run")) { |
|
| 63 | 63 | $tmp_code = trim($cssmin->run($cssin)); |
| 64 | - } elseif (@is_callable(array($cssmin,"minify"))) { |
|
| 64 | + } elseif (@is_callable(array($cssmin, "minify"))) { |
|
| 65 | 65 | $tmp_code = trim(CssMin::minify($cssin)); |
| 66 | 66 | } |
| 67 | 67 | } |
@@ -74,13 +74,13 @@ discard block |
||
| 74 | 74 | } |
| 75 | 75 | } else { |
| 76 | 76 | // .min.css -> no heavy-lifting, just some cleanup |
| 77 | - $stylesrc=preg_replace("#^\s*\/\*[^!].*\*\/\s?#Us","",$cssin); |
|
| 78 | - $stylesrc=preg_replace("#(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+#", "\n", $stylesrc); |
|
| 79 | - $stylesrc=autoptimizeStyles::fixurls($cssfilename,$stylesrc); |
|
| 77 | + $stylesrc = preg_replace("#^\s*\/\*[^!].*\*\/\s?#Us", "", $cssin); |
|
| 78 | + $stylesrc = preg_replace("#(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+#", "\n", $stylesrc); |
|
| 79 | + $stylesrc = autoptimizeStyles::fixurls($cssfilename, $stylesrc); |
|
| 80 | 80 | } |
| 81 | - if ( !empty($cssfilename) && ( str_replace( apply_filters('autoptimize_filter_css_speedup_cache',false), '', $cssfilename ) === $cssfilename ) ) { |
|
| 81 | + if (!empty($cssfilename) && (str_replace(apply_filters('autoptimize_filter_css_speedup_cache', false), '', $cssfilename) === $cssfilename)) { |
|
| 82 | 82 | // only cache CSS if not inline and allowed by filter |
| 83 | - $ccheck->cache($stylesrc,'text/css'); |
|
| 83 | + $ccheck->cache($stylesrc, 'text/css'); |
|
| 84 | 84 | } |
| 85 | 85 | } |
| 86 | 86 | unset($ccheck); |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | function ao_css_speedup_cleanup($cssin) { |
| 91 | 91 | // speedupper results in aggregated CSS not being minified, so the filestart-marker AO adds when aggregating need to be removed |
| 92 | - return trim(str_replace(array('/*FILESTART*/','/*FILESTART2*/'),'',$cssin)); |
|
| 92 | + return trim(str_replace(array('/*FILESTART*/', '/*FILESTART2*/'), '', $cssin)); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | function ao_js_speedup_cleanup($jsin) { |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | return trim($jsin); |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | -add_filter('autoptimize_css_individual_style','ao_css_snippetcacher',10,2); |
|
| 101 | -add_filter('autoptimize_js_individual_script','ao_js_snippetcacher',10,2); |
|
| 102 | -add_filter('autoptimize_css_after_minify','ao_css_speedup_cleanup',10,1); |
|
| 103 | -add_filter('autoptimize_js_after_minify','ao_js_speedup_cleanup',10,1); |
|
| 100 | +add_filter('autoptimize_css_individual_style', 'ao_css_snippetcacher', 10, 2); |
|
| 101 | +add_filter('autoptimize_js_individual_script', 'ao_js_snippetcacher', 10, 2); |
|
| 102 | +add_filter('autoptimize_css_after_minify', 'ao_css_speedup_cleanup', 10, 1); |
|
| 103 | +add_filter('autoptimize_js_after_minify', 'ao_js_speedup_cleanup', 10, 1); |
|
@@ -12,15 +12,15 @@ discard block |
||
| 12 | 12 | http://www.gnu.org/licenses/gpl.txt |
| 13 | 13 | */ |
| 14 | 14 | |
| 15 | -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
|
| 15 | +if (!defined('ABSPATH')) exit; // Exit if accessed directly |
|
| 16 | 16 | |
| 17 | -define('AUTOPTIMIZE_PLUGIN_DIR',plugin_dir_path(__FILE__)); |
|
| 17 | +define('AUTOPTIMIZE_PLUGIN_DIR', plugin_dir_path(__FILE__)); |
|
| 18 | 18 | |
| 19 | 19 | // Load config class |
| 20 | 20 | include(AUTOPTIMIZE_PLUGIN_DIR.'classes/autoptimizeConfig.php'); |
| 21 | 21 | |
| 22 | 22 | // Load toolbar class |
| 23 | -include( AUTOPTIMIZE_PLUGIN_DIR.'classes/autoptimizeToolbar.php' ); |
|
| 23 | +include(AUTOPTIMIZE_PLUGIN_DIR.'classes/autoptimizeToolbar.php'); |
|
| 24 | 24 | |
| 25 | 25 | // Load partners tab if admin |
| 26 | 26 | if (is_admin()) { |
@@ -28,25 +28,25 @@ discard block |
||
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | // Do we gzip when caching (needed early to load autoptimizeCache.php) |
| 31 | -define('AUTOPTIMIZE_CACHE_NOGZIP',(bool) get_option('autoptimize_cache_nogzip')); |
|
| 31 | +define('AUTOPTIMIZE_CACHE_NOGZIP', (bool) get_option('autoptimize_cache_nogzip')); |
|
| 32 | 32 | |
| 33 | 33 | // Load cache class |
| 34 | 34 | include(AUTOPTIMIZE_PLUGIN_DIR.'classes/autoptimizeCache.php'); |
| 35 | 35 | |
| 36 | 36 | // wp-content dir name (automagically set, should not be needed), dirname of AO cache dir and AO-prefix can be overridden in wp-config.php |
| 37 | -if (!defined('AUTOPTIMIZE_WP_CONTENT_NAME')) { define('AUTOPTIMIZE_WP_CONTENT_NAME','/'.wp_basename( WP_CONTENT_DIR )); } |
|
| 38 | -if (!defined('AUTOPTIMIZE_CACHE_CHILD_DIR')) { define('AUTOPTIMIZE_CACHE_CHILD_DIR','/cache/autoptimize/'); } |
|
| 37 | +if (!defined('AUTOPTIMIZE_WP_CONTENT_NAME')) { define('AUTOPTIMIZE_WP_CONTENT_NAME', '/'.wp_basename(WP_CONTENT_DIR)); } |
|
| 38 | +if (!defined('AUTOPTIMIZE_CACHE_CHILD_DIR')) { define('AUTOPTIMIZE_CACHE_CHILD_DIR', '/cache/autoptimize/'); } |
|
| 39 | 39 | if (!defined('AUTOPTIMIZE_CACHEFILE_PREFIX')) { define('AUTOPTIMIZE_CACHEFILE_PREFIX', 'autoptimize_'); } |
| 40 | 40 | |
| 41 | 41 | // Plugin dir constants (plugin url's defined later to accomodate domain mapped sites) |
| 42 | -if (is_multisite() && apply_filters( 'autoptimize_separate_blog_caches' , true )) { |
|
| 42 | +if (is_multisite() && apply_filters('autoptimize_separate_blog_caches', true)) { |
|
| 43 | 43 | $blog_id = get_current_blog_id(); |
| 44 | - define('AUTOPTIMIZE_CACHE_DIR', WP_CONTENT_DIR.AUTOPTIMIZE_CACHE_CHILD_DIR.$blog_id.'/' ); |
|
| 44 | + define('AUTOPTIMIZE_CACHE_DIR', WP_CONTENT_DIR.AUTOPTIMIZE_CACHE_CHILD_DIR.$blog_id.'/'); |
|
| 45 | 45 | } else { |
| 46 | 46 | define('AUTOPTIMIZE_CACHE_DIR', WP_CONTENT_DIR.AUTOPTIMIZE_CACHE_CHILD_DIR); |
| 47 | 47 | } |
| 48 | -define('AUTOPTIMIZE_CACHE_DELAY',true); |
|
| 49 | -define('WP_ROOT_DIR',str_replace(AUTOPTIMIZE_WP_CONTENT_NAME,'',WP_CONTENT_DIR)); |
|
| 48 | +define('AUTOPTIMIZE_CACHE_DELAY', true); |
|
| 49 | +define('WP_ROOT_DIR', str_replace(AUTOPTIMIZE_WP_CONTENT_NAME, '', WP_CONTENT_DIR)); |
|
| 50 | 50 | |
| 51 | 51 | // Initialize the cache at least once |
| 52 | 52 | $conf = autoptimizeConfig::instance(); |
@@ -54,65 +54,65 @@ discard block |
||
| 54 | 54 | /* Check if we're updating, in which case we might need to do stuff and flush the cache |
| 55 | 55 | to avoid old versions of aggregated files lingering around */ |
| 56 | 56 | |
| 57 | -$autoptimize_version="2.2.0"; |
|
| 58 | -$autoptimize_db_version=get_option('autoptimize_version','none'); |
|
| 57 | +$autoptimize_version = "2.2.0"; |
|
| 58 | +$autoptimize_db_version = get_option('autoptimize_version', 'none'); |
|
| 59 | 59 | |
| 60 | 60 | if ($autoptimize_db_version !== $autoptimize_version) { |
| 61 | - if ($autoptimize_db_version==="none") { |
|
| 61 | + if ($autoptimize_db_version === "none") { |
|
| 62 | 62 | add_action('admin_notices', 'autoptimize_install_config_notice'); |
| 63 | 63 | } else { |
| 64 | 64 | // updating, include the update-code |
| 65 | 65 | include(AUTOPTIMIZE_PLUGIN_DIR.'classlesses/autoptimizeUpdateCode.php'); |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - update_option('autoptimize_version',$autoptimize_version); |
|
| 69 | - $autoptimize_db_version=$autoptimize_version; |
|
| 68 | + update_option('autoptimize_version', $autoptimize_version); |
|
| 69 | + $autoptimize_db_version = $autoptimize_version; |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | // Load translations |
| 73 | 73 | function autoptimize_load_plugin_textdomain() { |
| 74 | - load_plugin_textdomain('autoptimize',false,plugin_basename(dirname( __FILE__ )).'/localization'); |
|
| 74 | + load_plugin_textdomain('autoptimize', false, plugin_basename(dirname(__FILE__)).'/localization'); |
|
| 75 | 75 | } |
| 76 | -add_action( 'init', 'autoptimize_load_plugin_textdomain' ); |
|
| 76 | +add_action('init', 'autoptimize_load_plugin_textdomain'); |
|
| 77 | 77 | |
| 78 | -function autoptimize_uninstall(){ |
|
| 78 | +function autoptimize_uninstall() { |
|
| 79 | 79 | autoptimizeCache::clearall(); |
| 80 | 80 | |
| 81 | - $delete_options=array("autoptimize_cache_clean", "autoptimize_cache_nogzip", "autoptimize_css", "autoptimize_css_datauris", "autoptimize_css_justhead", "autoptimize_css_defer", "autoptimize_css_defer_inline", "autoptimize_css_inline", "autoptimize_css_exclude", "autoptimize_html", "autoptimize_html_keepcomments", "autoptimize_js", "autoptimize_js_exclude", "autoptimize_js_forcehead", "autoptimize_js_justhead", "autoptimize_js_trycatch", "autoptimize_version", "autoptimize_show_adv", "autoptimize_cdn_url", "autoptimize_cachesize_notice","autoptimize_css_include_inline","autoptimize_js_include_inline","autoptimize_css_nogooglefont","autoptimize_optimize_logged","autoptimize_optimize_checkout"); |
|
| 81 | + $delete_options = array("autoptimize_cache_clean", "autoptimize_cache_nogzip", "autoptimize_css", "autoptimize_css_datauris", "autoptimize_css_justhead", "autoptimize_css_defer", "autoptimize_css_defer_inline", "autoptimize_css_inline", "autoptimize_css_exclude", "autoptimize_html", "autoptimize_html_keepcomments", "autoptimize_js", "autoptimize_js_exclude", "autoptimize_js_forcehead", "autoptimize_js_justhead", "autoptimize_js_trycatch", "autoptimize_version", "autoptimize_show_adv", "autoptimize_cdn_url", "autoptimize_cachesize_notice", "autoptimize_css_include_inline", "autoptimize_js_include_inline", "autoptimize_css_nogooglefont", "autoptimize_optimize_logged", "autoptimize_optimize_checkout"); |
|
| 82 | 82 | |
| 83 | - if ( !is_multisite() ) { |
|
| 84 | - foreach ($delete_options as $del_opt) { delete_option( $del_opt ); } |
|
| 83 | + if (!is_multisite()) { |
|
| 84 | + foreach ($delete_options as $del_opt) { delete_option($del_opt); } |
|
| 85 | 85 | } else { |
| 86 | 86 | global $wpdb; |
| 87 | - $blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" ); |
|
| 87 | + $blog_ids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs"); |
|
| 88 | 88 | $original_blog_id = get_current_blog_id(); |
| 89 | - foreach ( $blog_ids as $blog_id ) { |
|
| 90 | - switch_to_blog( $blog_id ); |
|
| 91 | - foreach ($delete_options as $del_opt) { delete_option( $del_opt ); } |
|
| 89 | + foreach ($blog_ids as $blog_id) { |
|
| 90 | + switch_to_blog($blog_id); |
|
| 91 | + foreach ($delete_options as $del_opt) { delete_option($del_opt); } |
|
| 92 | 92 | } |
| 93 | - switch_to_blog( $original_blog_id ); |
|
| 93 | + switch_to_blog($original_blog_id); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - if ( wp_get_schedule( 'ao_cachechecker' ) ) { |
|
| 97 | - wp_clear_scheduled_hook( 'ao_cachechecker' ); |
|
| 96 | + if (wp_get_schedule('ao_cachechecker')) { |
|
| 97 | + wp_clear_scheduled_hook('ao_cachechecker'); |
|
| 98 | 98 | } |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | function autoptimize_install_config_notice() { |
| 102 | 102 | echo '<div class="updated"><p>'; |
| 103 | - _e('Thank you for installing and activating Autoptimize. Please configure it under "Settings" -> "Autoptimize" to start improving your site\'s performance.', 'autoptimize' ); |
|
| 103 | + _e('Thank you for installing and activating Autoptimize. Please configure it under "Settings" -> "Autoptimize" to start improving your site\'s performance.', 'autoptimize'); |
|
| 104 | 104 | echo '</p></div>'; |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | function autoptimize_update_config_notice() { |
| 108 | 108 | echo '<div class="updated"><p>'; |
| 109 | - _e('Autoptimize has just been updated. Please <strong>test your site now</strong> and adapt Autoptimize config if needed.', 'autoptimize' ); |
|
| 109 | + _e('Autoptimize has just been updated. Please <strong>test your site now</strong> and adapt Autoptimize config if needed.', 'autoptimize'); |
|
| 110 | 110 | echo '</p></div>'; |
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | function autoptimize_cache_unavailable_notice() { |
| 114 | 114 | echo '<div class="error"><p>'; |
| 115 | - printf( __( 'Autoptimize cannot write to the cache directory (%s), please fix to enable CSS/ JS optimization!', 'autoptimize' ), AUTOPTIMIZE_CACHE_DIR ); |
|
| 115 | + printf(__('Autoptimize cannot write to the cache directory (%s), please fix to enable CSS/ JS optimization!', 'autoptimize'), AUTOPTIMIZE_CACHE_DIR); |
|
| 116 | 116 | echo '</p></div>'; |
| 117 | 117 | } |
| 118 | 118 | |
@@ -121,27 +121,27 @@ discard block |
||
| 121 | 121 | $ao_noptimize = false; |
| 122 | 122 | |
| 123 | 123 | // noptimize in qs to get non-optimized page for debugging |
| 124 | - if (array_key_exists("ao_noptimize",$_GET) || array_key_exists("ao_noptirocket",$_GET)) { |
|
| 125 | - if ( ( ($_GET["ao_noptimize"]==="1") || ($_GET["ao_noptirocket"]==="1") ) && (apply_filters('autoptimize_filter_honor_qs_noptimize',true)) ) { |
|
| 124 | + if (array_key_exists("ao_noptimize", $_GET) || array_key_exists("ao_noptirocket", $_GET)) { |
|
| 125 | + if ((($_GET["ao_noptimize"] === "1") || ($_GET["ao_noptirocket"] === "1")) && (apply_filters('autoptimize_filter_honor_qs_noptimize', true))) { |
|
| 126 | 126 | $ao_noptimize = true; |
| 127 | 127 | } |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | // check for DONOTMINIFY constant as used by e.g. WooCommerce POS |
| 131 | - if (defined('DONOTMINIFY') && (constant('DONOTMINIFY')===true || constant('DONOTMINIFY')==="true")) { |
|
| 131 | + if (defined('DONOTMINIFY') && (constant('DONOTMINIFY') === true || constant('DONOTMINIFY') === "true")) { |
|
| 132 | 132 | $ao_noptimize = true; |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | // if setting says not to optimize logged in user and user is logged in |
| 136 | - if ( get_option('autoptimize_optimize_logged','on') !== 'on' && is_user_logged_in() && current_user_can('edit_posts') ) { |
|
| 136 | + if (get_option('autoptimize_optimize_logged', 'on') !== 'on' && is_user_logged_in() && current_user_can('edit_posts')) { |
|
| 137 | 137 | $ao_noptimize = true; |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | // if setting says not to optimize cart/ checkout |
| 141 | - if ( get_option('autoptimize_optimize_checkout','on') !== 'on' ) { |
|
| 141 | + if (get_option('autoptimize_optimize_checkout', 'on') !== 'on') { |
|
| 142 | 142 | // checking for woocommerce, easy digital downloads and wp ecommerce |
| 143 | - foreach ( array("is_checkout","is_cart","edd_is_checkout","wpsc_is_cart","wpsc_is_checkout") as $shopCond ) { |
|
| 144 | - if ( function_exists($shopCond) && $shopCond() ) { |
|
| 143 | + foreach (array("is_checkout", "is_cart", "edd_is_checkout", "wpsc_is_cart", "wpsc_is_checkout") as $shopCond) { |
|
| 144 | + if (function_exists($shopCond) && $shopCond()) { |
|
| 145 | 145 | $ao_noptimize = true; |
| 146 | 146 | break; |
| 147 | 147 | } |
@@ -149,11 +149,11 @@ discard block |
||
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | // filter you can use to block autoptimization on your own terms |
| 152 | - $ao_noptimize = (bool) apply_filters( 'autoptimize_filter_noptimize', $ao_noptimize ); |
|
| 152 | + $ao_noptimize = (bool) apply_filters('autoptimize_filter_noptimize', $ao_noptimize); |
|
| 153 | 153 | |
| 154 | - if (!is_feed() && !$ao_noptimize && !is_admin() && ( !function_exists('is_customize_preview') || !is_customize_preview() ) ) { |
|
| 154 | + if (!is_feed() && !$ao_noptimize && !is_admin() && (!function_exists('is_customize_preview') || !is_customize_preview())) { |
|
| 155 | 155 | // load speedupper conditionally (true by default?) |
| 156 | - if ( apply_filters('autoptimize_filter_speedupper', true) ) { |
|
| 156 | + if (apply_filters('autoptimize_filter_speedupper', true)) { |
|
| 157 | 157 | include(AUTOPTIMIZE_PLUGIN_DIR.'classlesses/autoptimizeSpeedupper.php'); |
| 158 | 158 | } |
| 159 | 159 | |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | include(AUTOPTIMIZE_PLUGIN_DIR.'classes/autoptimizeBase.php'); |
| 165 | 165 | |
| 166 | 166 | // Load extra classes and set some vars |
| 167 | - if($conf->get('autoptimize_html')) { |
|
| 167 | + if ($conf->get('autoptimize_html')) { |
|
| 168 | 168 | include(AUTOPTIMIZE_PLUGIN_DIR.'classes/autoptimizeHTML.php'); |
| 169 | 169 | // BUG: new minify-html does not support keeping HTML comments, skipping for now |
| 170 | 170 | // if (defined('AUTOPTIMIZE_LEGACY_MINIFIERS')) { |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | // } |
| 175 | 175 | } |
| 176 | 176 | |
| 177 | - if($conf->get('autoptimize_js')) { |
|
| 177 | + if ($conf->get('autoptimize_js')) { |
|
| 178 | 178 | include(AUTOPTIMIZE_PLUGIN_DIR.'classes/autoptimizeScripts.php'); |
| 179 | 179 | if (!class_exists('JSMin')) { |
| 180 | 180 | if (defined('AUTOPTIMIZE_LEGACY_MINIFIERS')) { |
@@ -183,15 +183,15 @@ discard block |
||
| 183 | 183 | @include(AUTOPTIMIZE_PLUGIN_DIR.'classes/external/php/minify-2.3.1-jsmin.php'); |
| 184 | 184 | } |
| 185 | 185 | } |
| 186 | - if ( ! defined( 'CONCATENATE_SCRIPTS' )) { |
|
| 187 | - define('CONCATENATE_SCRIPTS',false); |
|
| 186 | + if (!defined('CONCATENATE_SCRIPTS')) { |
|
| 187 | + define('CONCATENATE_SCRIPTS', false); |
|
| 188 | 188 | } |
| 189 | - if ( ! defined( 'COMPRESS_SCRIPTS' )) { |
|
| 190 | - define('COMPRESS_SCRIPTS',false); |
|
| 189 | + if (!defined('COMPRESS_SCRIPTS')) { |
|
| 190 | + define('COMPRESS_SCRIPTS', false); |
|
| 191 | 191 | } |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - if($conf->get('autoptimize_css')) { |
|
| 194 | + if ($conf->get('autoptimize_css')) { |
|
| 195 | 195 | include(AUTOPTIMIZE_PLUGIN_DIR.'classes/autoptimizeStyles.php'); |
| 196 | 196 | if (defined('AUTOPTIMIZE_LEGACY_MINIFIERS')) { |
| 197 | 197 | if (!class_exists('Minify_CSS_Compressor')) { |
@@ -202,13 +202,13 @@ discard block |
||
| 202 | 202 | @include(AUTOPTIMIZE_PLUGIN_DIR.'classes/external/php/yui-php-cssmin-2.4.8-4_fgo.php'); |
| 203 | 203 | } |
| 204 | 204 | } |
| 205 | - if ( ! defined( 'COMPRESS_CSS' )) { |
|
| 206 | - define('COMPRESS_CSS',false); |
|
| 205 | + if (!defined('COMPRESS_CSS')) { |
|
| 206 | + define('COMPRESS_CSS', false); |
|
| 207 | 207 | } |
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | // filter to be used with care, kills all output buffers when true. use with extreme caution. you have been warned! |
| 211 | - if (apply_filters('autoptimize_filter_obkiller',false)) { |
|
| 211 | + if (apply_filters('autoptimize_filter_obkiller', false)) { |
|
| 212 | 212 | while (ob_get_level() > 0) { |
| 213 | 213 | ob_end_clean(); |
| 214 | 214 | } |
@@ -220,36 +220,36 @@ discard block |
||
| 220 | 220 | |
| 221 | 221 | // Action on end, this is where the magic happens |
| 222 | 222 | function autoptimize_end_buffering($content) { |
| 223 | - if ( ((stripos($content,"<html") === false) && (stripos($content,"<!DOCTYPE html") === false)) || preg_match('/<html[^>]*(?:amp|⚡)/',$content) === 1 || stripos($content,"<xsl:stylesheet") !== false ) { return $content; } |
|
| 223 | + if (((stripos($content, "<html") === false) && (stripos($content, "<!DOCTYPE html") === false)) || preg_match('/<html[^>]*(?:amp|⚡)/', $content) === 1 || stripos($content, "<xsl:stylesheet") !== false) { return $content; } |
|
| 224 | 224 | |
| 225 | 225 | // load URL constants as late as possible to allow domain mapper to kick in |
| 226 | 226 | if (function_exists("domain_mapping_siteurl")) { |
| 227 | - define('AUTOPTIMIZE_WP_SITE_URL',domain_mapping_siteurl(get_current_blog_id())); |
|
| 228 | - define('AUTOPTIMIZE_WP_CONTENT_URL',str_replace(get_original_url(AUTOPTIMIZE_WP_SITE_URL),AUTOPTIMIZE_WP_SITE_URL,content_url())); |
|
| 227 | + define('AUTOPTIMIZE_WP_SITE_URL', domain_mapping_siteurl(get_current_blog_id())); |
|
| 228 | + define('AUTOPTIMIZE_WP_CONTENT_URL', str_replace(get_original_url(AUTOPTIMIZE_WP_SITE_URL), AUTOPTIMIZE_WP_SITE_URL, content_url())); |
|
| 229 | 229 | } else { |
| 230 | - define('AUTOPTIMIZE_WP_SITE_URL',site_url()); |
|
| 231 | - define('AUTOPTIMIZE_WP_CONTENT_URL',content_url()); |
|
| 230 | + define('AUTOPTIMIZE_WP_SITE_URL', site_url()); |
|
| 231 | + define('AUTOPTIMIZE_WP_CONTENT_URL', content_url()); |
|
| 232 | 232 | } |
| 233 | 233 | |
| 234 | - if ( is_multisite() && apply_filters( 'autoptimize_separate_blog_caches' , true ) ) { |
|
| 234 | + if (is_multisite() && apply_filters('autoptimize_separate_blog_caches', true)) { |
|
| 235 | 235 | $blog_id = get_current_blog_id(); |
| 236 | - define('AUTOPTIMIZE_CACHE_URL',AUTOPTIMIZE_WP_CONTENT_URL.AUTOPTIMIZE_CACHE_CHILD_DIR.$blog_id.'/' ); |
|
| 236 | + define('AUTOPTIMIZE_CACHE_URL', AUTOPTIMIZE_WP_CONTENT_URL.AUTOPTIMIZE_CACHE_CHILD_DIR.$blog_id.'/'); |
|
| 237 | 237 | } else { |
| 238 | - define('AUTOPTIMIZE_CACHE_URL',AUTOPTIMIZE_WP_CONTENT_URL.AUTOPTIMIZE_CACHE_CHILD_DIR); |
|
| 238 | + define('AUTOPTIMIZE_CACHE_URL', AUTOPTIMIZE_WP_CONTENT_URL.AUTOPTIMIZE_CACHE_CHILD_DIR); |
|
| 239 | 239 | } |
| 240 | - define('AUTOPTIMIZE_WP_ROOT_URL',str_replace(AUTOPTIMIZE_WP_CONTENT_NAME,'',AUTOPTIMIZE_WP_CONTENT_URL)); |
|
| 241 | - define('AUTOPTIMIZE_HASH',wp_hash(AUTOPTIMIZE_CACHE_DIR)); |
|
| 240 | + define('AUTOPTIMIZE_WP_ROOT_URL', str_replace(AUTOPTIMIZE_WP_CONTENT_NAME, '', AUTOPTIMIZE_WP_CONTENT_URL)); |
|
| 241 | + define('AUTOPTIMIZE_HASH', wp_hash(AUTOPTIMIZE_CACHE_DIR)); |
|
| 242 | 242 | |
| 243 | 243 | // Config element |
| 244 | 244 | $conf = autoptimizeConfig::instance(); |
| 245 | 245 | |
| 246 | 246 | // Choose the classes |
| 247 | 247 | $classes = array(); |
| 248 | - if($conf->get('autoptimize_js')) |
|
| 248 | + if ($conf->get('autoptimize_js')) |
|
| 249 | 249 | $classes[] = 'autoptimizeScripts'; |
| 250 | - if($conf->get('autoptimize_css')) |
|
| 250 | + if ($conf->get('autoptimize_css')) |
|
| 251 | 251 | $classes[] = 'autoptimizeStyles'; |
| 252 | - if($conf->get('autoptimize_html')) |
|
| 252 | + if ($conf->get('autoptimize_html')) |
|
| 253 | 253 | $classes[] = 'autoptimizeHTML'; |
| 254 | 254 | |
| 255 | 255 | // Set some options |
@@ -278,12 +278,12 @@ discard block |
||
| 278 | 278 | ) |
| 279 | 279 | ); |
| 280 | 280 | |
| 281 | - $content = apply_filters( 'autoptimize_filter_html_before_minify', $content ); |
|
| 281 | + $content = apply_filters('autoptimize_filter_html_before_minify', $content); |
|
| 282 | 282 | |
| 283 | 283 | // Run the classes |
| 284 | - foreach($classes as $name) { |
|
| 284 | + foreach ($classes as $name) { |
|
| 285 | 285 | $instance = new $name($content); |
| 286 | - if($instance->read($classoptions[$name])) { |
|
| 286 | + if ($instance->read($classoptions[$name])) { |
|
| 287 | 287 | $instance->minify(); |
| 288 | 288 | $instance->cache(); |
| 289 | 289 | $content = $instance->getcontent(); |
@@ -291,19 +291,19 @@ discard block |
||
| 291 | 291 | unset($instance); |
| 292 | 292 | } |
| 293 | 293 | |
| 294 | - $content = apply_filters( 'autoptimize_html_after_minify', $content ); |
|
| 294 | + $content = apply_filters('autoptimize_html_after_minify', $content); |
|
| 295 | 295 | return $content; |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | -if ( autoptimizeCache::cacheavail() ) { |
|
| 298 | +if (autoptimizeCache::cacheavail()) { |
|
| 299 | 299 | $conf = autoptimizeConfig::instance(); |
| 300 | - if( $conf->get('autoptimize_html') || $conf->get('autoptimize_js') || $conf->get('autoptimize_css') ) { |
|
| 300 | + if ($conf->get('autoptimize_html') || $conf->get('autoptimize_js') || $conf->get('autoptimize_css')) { |
|
| 301 | 301 | // Hook to wordpress |
| 302 | 302 | if (defined('AUTOPTIMIZE_INIT_EARLIER')) { |
| 303 | - add_action('init','autoptimize_start_buffering',-1); |
|
| 303 | + add_action('init', 'autoptimize_start_buffering', -1); |
|
| 304 | 304 | } else { |
| 305 | 305 | if (!defined('AUTOPTIMIZE_HOOK_INTO')) { define('AUTOPTIMIZE_HOOK_INTO', 'template_redirect'); } |
| 306 | - add_action(constant("AUTOPTIMIZE_HOOK_INTO"),'autoptimize_start_buffering',2); |
|
| 306 | + add_action(constant("AUTOPTIMIZE_HOOK_INTO"), 'autoptimize_start_buffering', 2); |
|
| 307 | 307 | } |
| 308 | 308 | } |
| 309 | 309 | } else { |
@@ -311,9 +311,9 @@ discard block |
||
| 311 | 311 | } |
| 312 | 312 | |
| 313 | 313 | function autoptimize_activate() { |
| 314 | - register_uninstall_hook( __FILE__, 'autoptimize_uninstall' ); |
|
| 314 | + register_uninstall_hook(__FILE__, 'autoptimize_uninstall'); |
|
| 315 | 315 | } |
| 316 | -register_activation_hook( __FILE__, 'autoptimize_activate' ); |
|
| 316 | +register_activation_hook(__FILE__, 'autoptimize_activate'); |
|
| 317 | 317 | |
| 318 | 318 | include_once('classlesses/autoptimizeCacheChecker.php'); |
| 319 | 319 | |