@@ -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, apply_filters( 'autoptimize_filter_cache_statsexpiry', HOUR_IN_SECONDS ) ); |
|
| 150 | + $AOstats = array($count, $size, time()); |
|
| 151 | + if ($count > 100) { |
|
| 152 | + set_transient("autoptimize_stats", $AOstats, apply_filters('autoptimize_filter_cache_statsexpiry', 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 |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | </Files> |
| 213 | 213 | </IfModule>'; |
| 214 | 214 | } else { |
| 215 | - $htAccessContent='<IfModule mod_expires.c> |
|
| 215 | + $htAccessContent = '<IfModule mod_expires.c> |
|
| 216 | 216 | ExpiresActive On |
| 217 | 217 | ExpiresByType text/css A30672000 |
| 218 | 218 | ExpiresByType text/javascript A30672000 |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | </Files> |
| 239 | 239 | </IfModule>'; |
| 240 | 240 | } |
| 241 | - @file_put_contents($htAccess,$htAccessContent); |
|
| 241 | + @file_put_contents($htAccess, $htAccessContent); |
|
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | // All OK |
@@ -247,22 +247,22 @@ discard block |
||
| 247 | 247 | |
| 248 | 248 | static function checkCacheDir($dir) { |
| 249 | 249 | // Check and create if not exists |
| 250 | - if(!file_exists($dir)) { |
|
| 251 | - @mkdir($dir,0775,true); |
|
| 252 | - if(!file_exists($dir)) { |
|
| 250 | + if (!file_exists($dir)) { |
|
| 251 | + @mkdir($dir, 0775, true); |
|
| 252 | + if (!file_exists($dir)) { |
|
| 253 | 253 | return false; |
| 254 | 254 | } |
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | // check if we can now write |
| 258 | - if(!is_writable($dir)) { |
|
| 258 | + if (!is_writable($dir)) { |
|
| 259 | 259 | return false; |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | // and write index.html here to avoid prying eyes |
| 263 | - $indexFile=$dir.'/index.html'; |
|
| 264 | - if(!is_file($indexFile)) { |
|
| 265 | - @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>'); |
|
| 263 | + $indexFile = $dir.'/index.html'; |
|
| 264 | + if (!is_file($indexFile)) { |
|
| 265 | + @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>'); |
|
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | 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,53 +52,53 @@ 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 | case "2.2": |
| 71 | 71 | /* |
| 72 | 72 | * 2.3 has no "remove google fonts" in main screen, moved to "extra" |
| 73 | 73 | */ |
| 74 | - if ( !is_multisite() ) { |
|
| 75 | - $_nogooglefont = get_option('autoptimize_css_nogooglefont',''); |
|
| 76 | - $_ao_extrasetting = get_option('autoptimize_extra_settings',''); |
|
| 77 | - if ( ($_nogooglefont == 1) && ( empty($_ao_extrasetting) ) ) { |
|
| 78 | - $_aoextra_removegfonts = array("autoptimize_extra_checkbox_field_1"=>"0","autoptimize_extra_checkbox_field_0"=>"0","autoptimize_extra_radio_field_4"=>"1","autoptimize_extra_text_field_2"=>"","autoptimize_extra_text_field_3"=>""); |
|
| 79 | - update_option( 'autoptimize_extra_settings', $_aoextra_removegfonts ); |
|
| 74 | + if (!is_multisite()) { |
|
| 75 | + $_nogooglefont = get_option('autoptimize_css_nogooglefont', ''); |
|
| 76 | + $_ao_extrasetting = get_option('autoptimize_extra_settings', ''); |
|
| 77 | + if (($_nogooglefont == 1) && (empty($_ao_extrasetting))) { |
|
| 78 | + $_aoextra_removegfonts = array("autoptimize_extra_checkbox_field_1"=>"0", "autoptimize_extra_checkbox_field_0"=>"0", "autoptimize_extra_radio_field_4"=>"1", "autoptimize_extra_text_field_2"=>"", "autoptimize_extra_text_field_3"=>""); |
|
| 79 | + update_option('autoptimize_extra_settings', $_aoextra_removegfonts); |
|
| 80 | 80 | } |
| 81 | 81 | delete_option('autoptimize_css_nogooglefont'); |
| 82 | 82 | } else { |
| 83 | 83 | global $wpdb; |
| 84 | - $blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" ); |
|
| 84 | + $blog_ids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs"); |
|
| 85 | 85 | $original_blog_id = get_current_blog_id(); |
| 86 | - foreach ( $blog_ids as $blog_id ) { |
|
| 87 | - switch_to_blog( $blog_id ); |
|
| 88 | - $_nogooglefont = get_option('autoptimize_css_nogooglefont',''); |
|
| 89 | - $_ao_extrasetting = get_option('autoptimize_extra_settings',''); |
|
| 90 | - if ( ($_nogooglefont == 1) && ( empty($_ao_extrasetting) ) ) { |
|
| 91 | - $_aoextra_removegfonts = array("autoptimize_extra_checkbox_field_1"=>"0","autoptimize_extra_checkbox_field_0"=>"0","autoptimize_extra_radio_field_4"=>"1","autoptimize_extra_text_field_2"=>"","autoptimize_extra_text_field_3"=>""); |
|
| 92 | - update_option( 'autoptimize_extra_settings', $_aoextra_removegfonts ); |
|
| 86 | + foreach ($blog_ids as $blog_id) { |
|
| 87 | + switch_to_blog($blog_id); |
|
| 88 | + $_nogooglefont = get_option('autoptimize_css_nogooglefont', ''); |
|
| 89 | + $_ao_extrasetting = get_option('autoptimize_extra_settings', ''); |
|
| 90 | + if (($_nogooglefont == 1) && (empty($_ao_extrasetting))) { |
|
| 91 | + $_aoextra_removegfonts = array("autoptimize_extra_checkbox_field_1"=>"0", "autoptimize_extra_checkbox_field_0"=>"0", "autoptimize_extra_radio_field_4"=>"1", "autoptimize_extra_text_field_2"=>"", "autoptimize_extra_text_field_3"=>""); |
|
| 92 | + update_option('autoptimize_extra_settings', $_aoextra_removegfonts); |
|
| 93 | 93 | } |
| 94 | 94 | delete_option('autoptimize_css_nogooglefont'); |
| 95 | 95 | } |
| 96 | - switch_to_blog( $original_blog_id ); |
|
| 96 | + switch_to_blog($original_blog_id); |
|
| 97 | 97 | } |
| 98 | 98 | $majorUp = true; |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | -if ( $majorUp === true && get_transient('autoptimize_stale_option_buster') == false ) { |
|
| 101 | +if ($majorUp === true && get_transient('autoptimize_stale_option_buster') == false) { |
|
| 102 | 102 | // clear cache and notify user to check result if major upgrade |
| 103 | 103 | set_transient('autoptimize_stale_option_buster', 'Mamsie & Liessie zehhe: ZWIJH!', HOUR_IN_SECONDS); |
| 104 | 104 | autoptimizeCache::clearall(); |