PluginProbe
Autoptimize / 3.0.3
Autoptimize v3.0.3
2.2.2 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 All 107 releases
← All changes | classes/autoptimizeConfig.php +299 -147 2.6.03.0.3 View file →
@@ -1,7 +1,7 @@
1 1 <?php
2 2 /**
3 - * Main configurtion logic.
3 + * Main configuration logic.
4 4 */
5 5
6 6 if ( ! defined( 'ABSPATH' ) ) {
7 7 exit;
@@ -42,8 +42,9 @@
42 42 }
43 43
44 44 add_action( 'admin_menu', array( $this, 'addmenu' ) );
45 45 add_action( 'admin_init', array( $this, 'registersettings' ) );
46 + add_action( 'admin_init', array( 'PAnD', 'init' ) );
46 47
47 48 // Set meta info.
48 49 if ( function_exists( 'plugin_row_meta' ) ) {
49 50 // 2.8 and higher.
@@ -60,8 +61,12 @@
60 61 autoptimizeOptionWrapper::update_option( 'autoptimize_cache_clean', 0 );
61 62 }
62 63
63 64 $this->settings_screen_do_remote_http = apply_filters( 'autoptimize_settingsscreen_remotehttp', $this->settings_screen_do_remote_http );
65 +
66 + if ( $this->is_ao_meta_settings_active() ) {
67 + $metaBox = new autoptimizeMetabox();
68 + }
64 69 }
65 70
66 71 // Adds the Autoptimize Toolbar to the Admin bar.
67 72 // (we load outside the is_admin check so it's also displayed on the frontend toolbar).
@@ -87,9 +92,9 @@
87 92 ?>
88 93 <div class="wrap">
89 94 <h1><?php _e( 'Autoptimize Settings', 'autoptimize' ); ?></h1>
90 95 <?php echo $this->ao_admin_tabs(); ?>
91 - <p style="font-size:120%;"><?php _e( 'Autoptimize is enabled and configured on a WordPress network level. Please contact your network administrator if you need Autoptimize settings changed.', 'autoptimize' ); ?></p>
96 + <p style="font-size:120%;"><?php echo apply_filters( 'autoptimize_filter_settingsscreen_multisite_network_message', __( 'Autoptimize is enabled and configured on a WordPress network level. Please contact your network administrator if you need Autoptimize settings changed.', 'autoptimize' ) ); ?></p>
92 97 </div>
93 98 <?php
94 99 }
95 100
@@ -95,9 +100,9 @@
95 100
96 101 public function show_config()
97 102 {
98 103 $conf = self::instance();
99 -?>
104 + ?>
100 105 <style>
101 106 /* title and button */
102 107 #ao_title_and_button:after {content:''; display:block; clear:both;}
103 108
@@ -113,8 +118,10 @@
113 118 }
114 119
115 120 input[type=url]:invalid {color: red; border-color:red;} .form-table th{font-weight:normal;}
116 121 #autoptimize_main .cb_label {display: block; padding-left: 25px; text-indent: -25px;}
122 +#autoptimize_main .form-table th {padding-top: 15px; padding-bottom: 15px;}
123 +#autoptimize_main .js_aggregate td, #autoptimize_main .js_aggregate th, #autoptimize_main .js_not_aggregate td, #autoptimize_main .js_not_aggregate th{padding-top:0px;}
117 124
118 125 /* rss block */
119 126 #futtta_feed ul{list-style:outside;}
120 127 #futtta_feed {font-size:medium; margin:0px 20px;}
@@ -179,16 +186,17 @@
179 186 </style>
180 187
181 188 <div class="wrap">
182 189
183 -<?php if ( defined( 'AUTOPTIMIZE_LEGACY_MINIFIERS' ) ) { ?>
184 - <div class="notice-error notice"><p>
185 - <?php _e( "You are using the (no longer supported) AUTOPTIMIZE_LEGACY_MINIFIERS constant. Ensure your site is working properly and remove the constant, it doesn't do anything any more.", 'autoptimize' ); ?>
190 +<!-- Temporary nudge to disable aoccss power-up. -->
191 +<?php if ( autoptimizeUtils::is_plugin_active( 'autoptimize-criticalcss/ao_criticss_aas.php' ) ) { ?>
192 + <div class="notice-info notice"><p>
193 + <?php _e( 'Autoptimize now includes the criticalcss.com integration that was previously part of the separate power-up. If you want you can simply disable the power-up and Autoptimize will take over immediately.', 'autoptimize' ); ?>
186 194 </p></div>
187 195 <?php } ?>
188 196
189 197 <div id="autoptimize_main">
190 - <h1 id="ao_title"><?php _e( 'Autoptimize Settings', 'autoptimize' ); ?></h1>
198 + <h1 id="ao_title"><?php apply_filters( 'autoptimize_filter_settings_is_pro', false ) ? _e( 'Autoptimize Pro Settings', 'autoptimize' ) : _e( 'Autoptimize Settings', 'autoptimize' ); ?></h1>
191 199 <?php echo $this->ao_admin_tabs(); ?>
192 200
193 201 <form method="post" action="<?php echo admin_url( 'options.php' ); ?>">
194 202 <?php settings_fields( 'autoptimize' ); ?>
@@ -217,25 +225,40 @@
217 225 <h2 class="itemTitle"><?php _e( 'JavaScript Options', 'autoptimize' ); ?></h2>
218 226 <table class="form-table">
219 227 <tr valign="top">
220 228 <th scope="row"><?php _e( 'Optimize JavaScript Code?', 'autoptimize' ); ?></th>
221 -<td><input type="checkbox" id="autoptimize_js" name="autoptimize_js" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_js' ) ? 'checked="checked" ' : ''; ?>/></td>
229 +<td><input type="checkbox" id="autoptimize_js" name="autoptimize_js" <?php echo $conf->get( 'autoptimize_js' ) ? 'checked="checked" ' : ''; ?>/></td>
222 230 </tr>
223 -<tr valign="top" class="js_sub">
231 +<tr valign="top" class="js_sub js_aggregate_master">
224 232 <th scope="row"><?php _e( 'Aggregate JS-files?', 'autoptimize' ); ?></th>
225 233 <td><label class="cb_label"><input type="checkbox" id="autoptimize_js_aggregate" name="autoptimize_js_aggregate" <?php echo $conf->get( 'autoptimize_js_aggregate' ) ? 'checked="checked" ' : ''; ?>/>
226 -<?php _e( 'Aggregate all linked JS-files to have them loaded non-render blocking? If this option is off, the individual JS-files will remain in place but will be minified.', 'autoptimize' ); ?></label></td>
234 +<?php _e( 'Aggregate all linked JS-files to have them loaded non-render blocking?', 'autoptimize' ); ?></label></td>
227 235 </tr>
228 -<tr valign="top" class="js_sub js_aggregate">
229 -<th scope="row"><?php _e( 'Also aggregate inline JS?', 'autoptimize' ); ?></th>
230 -<td><label class="cb_label"><input type="checkbox" name="autoptimize_js_include_inline" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_js_include_inline' ) ? 'checked="checked" ' : ''; ?>/>
231 -<?php _e( 'Let Autoptimize also extract JS from the HTML. <strong>Warning</strong>: this can make Autoptimize\'s cache size grow quickly, so only enable this if you know what you\'re doing.', 'autoptimize' ); ?></label></td>
236 +<tr valign="top" class="js_sub js_aggregate hidden">
237 +<th scope="row">&emsp;<?php _e( 'Also aggregate inline JS?', 'autoptimize' ); ?></th>
238 +<td><label class="cb_label"><input type="checkbox" name="autoptimize_js_include_inline" <?php echo $conf->get( 'autoptimize_js_include_inline' ) ? 'checked="checked" ' : ''; ?>/>
239 +<?php _e( 'Let Autoptimize also extract JS from the HTML (discouraged as it can make Autoptimize\'s cache size grow quickly)', 'autoptimize' ); ?></label></td>
232 240 </tr>
233 -<tr valign="top" class="js_sub js_aggregate">
234 -<th scope="row"><?php _e( 'Force JavaScript in &lt;head&gt;?', 'autoptimize' ); ?></th>
235 -<td><label class="cb_label"><input type="checkbox" name="autoptimize_js_forcehead" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_js_forcehead' ) ? 'checked="checked" ' : ''; ?>/>
236 -<?php _e( 'Load JavaScript early, this can potentially fix some JS-errors, but makes the JS render blocking.', 'autoptimize' ); ?></label></td>
241 +<tr valign="top" class="js_sub js_aggregate hidden">
242 +<th scope="row">&emsp;<?php _e( 'Force JavaScript in &lt;head&gt;?', 'autoptimize' ); ?></th>
243 +<td><label class="cb_label"><input type="checkbox" name="autoptimize_js_forcehead" <?php echo $conf->get( 'autoptimize_js_forcehead' ) ? 'checked="checked" ' : ''; ?>/>
244 +<?php _e( 'Load JavaScript early (discouraged as it makes the JS render blocking)', 'autoptimize' ); ?></label></td>
237 245 </tr>
246 +<tr valign="top" class="js_sub js_aggregate hidden">
247 +<th scope="row">&emsp;<?php _e( 'Add try-catch wrapping?', 'autoptimize' ); ?></th>
248 +<td><label class="cb_label"><input type="checkbox" name="autoptimize_js_trycatch" <?php echo $conf->get( 'autoptimize_js_trycatch' ) ? 'checked="checked" ' : ''; ?>/>
249 +<?php _e( 'If your aggregated scripts break because of a JS-error, you might want to try this, but generally discouraged.', 'autoptimize' ); ?></label></td>
250 +</tr>
251 +<tr valign="top" class="js_sub js_not_aggregate_master">
252 +<th scope="row"><?php _e( 'Do not aggregate but defer?', 'autoptimize' ); ?></th>
253 +<td><label class="cb_label"><input type="checkbox" id="autoptimize_js_defer_not_aggregate" name="autoptimize_js_defer_not_aggregate" <?php echo $conf->get( 'autoptimize_js_defer_not_aggregate' ) ? 'checked="checked" ' : ''; ?>/>
254 +<?php _e( 'Individual JS-files will be minified and deferred, making them non-render-blocking.', 'autoptimize' ); ?></label></td>
255 +</tr>
256 +<tr valign="top" id="js_defer_inline" class="js_sub js_not_aggregate hidden">
257 +<th scope="row">&emsp;<?php _e( 'Also defer inline JS?', 'autoptimize' ); ?></th>
258 +<td><label class="cb_label"><input type="checkbox" name="autoptimize_js_defer_inline" <?php echo $conf->get( 'autoptimize_js_defer_inline' ) ? 'checked="checked" ' : ''; ?>/>
259 +<?php _e( 'Also defer inline JS. Generally this will allow all JS to be deferred, so you should remove default exclusions, test and only exclude specific items if still needed.', 'autoptimize' ); ?></label></td>
260 +</tr>
238 261 <?php if ( autoptimizeOptionWrapper::get_option( 'autoptimize_js_justhead' ) ) { ?>
239 262 <tr valign="top" class="js_sub js_aggregate">
240 263 <th scope="row">
241 264 <?php
@@ -242,24 +265,23 @@
242 265 _e( 'Look for scripts only in &lt;head&gt;?', 'autoptimize' );
243 266 echo ' <i>' . __( '(deprecated)', 'autoptimize' ) . '</i>';
244 267 ?>
245 268 </th>
246 -<td><label class="cb_label"><input type="checkbox" name="autoptimize_js_justhead" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_js_justhead' ) ? 'checked="checked" ' : ''; ?>/>
269 +<td><label class="cb_label"><input type="checkbox" name="autoptimize_js_justhead" <?php echo $conf->get( 'autoptimize_js_justhead' ) ? 'checked="checked" ' : ''; ?>/>
247 270 <?php _e( 'Mostly useful in combination with previous option when using jQuery-based templates, but might help keeping cache size under control.', 'autoptimize' ); ?></label></td>
248 271 </tr>
249 272 <?php } ?>
250 273 <tr valign="top" class="js_sub">
251 274 <th scope="row"><?php _e( 'Exclude scripts from Autoptimize:', 'autoptimize' ); ?></th>
252 -<td><label><input type="text" style="width:100%;" name="autoptimize_js_exclude" value="<?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_js_exclude', 'wp-includes/js/dist/, wp-includes/js/tinymce/, js/jquery/jquery.js' ); ?>"/><br />
275 +<td><label><input type="text" style="width:100%;" name="autoptimize_js_exclude" value="<?php echo esc_attr( autoptimizeOptionWrapper::get_option( 'autoptimize_js_exclude', '' ) ); ?>"/><br />
253 276 <?php
254 -echo __( 'A comma-separated list of scripts you want to exclude from being optimized, for example \'whatever.js, another.js\' (without the quotes) to exclude those scripts from being aggregated by Autoptimize.', 'autoptimize' ) . ' ' . __( 'Important: excluded non-minified files are still minified by Autoptimize unless that option under "misc" is disabled.', 'autoptimize' );
277 +echo __( 'A comma-separated list of scripts you do not want optimized, for example \'whatever.js, my_var\' (without the quotes).', 'autoptimize' ) . ' ' . __( 'Important: when "aggregate JS-files" is on, excluded non-minified files are still minified by Autoptimize unless that option under "misc" is disabled.', 'autoptimize' );
255 278 ?>
256 279 </label></td>
257 280 </tr>
258 -<tr valign="top" class="js_sub js_aggregate">
259 -<th scope="row"><?php _e( 'Add try-catch wrapping?', 'autoptimize' ); ?></th>
260 -<td><label class="cb_label"><input type="checkbox" name="autoptimize_js_trycatch" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_js_trycatch' ) ? 'checked="checked" ' : ''; ?>/>
261 -<?php _e( 'If your scripts break because of a JS-error, you might want to try this.', 'autoptimize' ); ?></label></td>
281 +<tr valign="top">
282 +<th scope="row"><?php _e( 'Remove Unused JavaScript?', 'autoptimize' ); ?></th>
283 +<td><?php _e( 'Autoptimize combines your theme & plugins\' JavaScript, but does not know what is used and what not. If Google Pagespeed Insights detects unused JavaScript, consider using a plugin like "Plugin Organizer" or similar to manage what JavaScript is added where.', 'autoptimize' ); ?></td>
262 284 </tr>
263 285 </table>
264 286 </li>
265 287
@@ -267,9 +289,9 @@
267 289 <h2 class="itemTitle"><?php _e( 'CSS Options', 'autoptimize' ); ?></h2>
268 290 <table class="form-table">
269 291 <tr valign="top">
270 292 <th scope="row"><?php _e( 'Optimize CSS Code?', 'autoptimize' ); ?></th>
271 -<td><input type="checkbox" id="autoptimize_css" name="autoptimize_css" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_css' ) ? 'checked="checked" ' : ''; ?>/></td>
293 +<td><input type="checkbox" id="autoptimize_css" name="autoptimize_css" <?php echo $conf->get( 'autoptimize_css' ) ? 'checked="checked" ' : ''; ?>/></td>
272 294 </tr>
273 295 <tr class="css_sub" valign="top">
274 296 <th scope="row"><?php _e( 'Aggregate CSS-files?', 'autoptimize' ); ?></th>
275 297 <td><label class="cb_label"><input type="checkbox" id="autoptimize_css_aggregate" name="autoptimize_css_aggregate" <?php echo $conf->get( 'autoptimize_css_aggregate' ) ? 'checked="checked" ' : ''; ?>/>
@@ -276,14 +298,14 @@
276 298 <?php _e( 'Aggregate all linked CSS-files? If this option is off, the individual CSS-files will remain in place but will be minified.', 'autoptimize' ); ?></label></td>
277 299 </tr>
278 300 <tr valign="top" class="css_sub css_aggregate">
279 301 <th scope="row"><?php _e( 'Also aggregate inline CSS?', 'autoptimize' ); ?></th>
280 -<td><label class="cb_label"><input type="checkbox" name="autoptimize_css_include_inline" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_css_include_inline', '1' ) ? 'checked="checked" ' : ''; ?>/>
302 +<td><label class="cb_label"><input type="checkbox" name="autoptimize_css_include_inline" <?php echo $conf->get( 'autoptimize_css_include_inline', '1' ) ? 'checked="checked" ' : ''; ?>/>
281 303 <?php _e( 'Check this option for Autoptimize to also aggregate CSS in the HTML.', 'autoptimize' ); ?></label></td>
282 304 </tr>
283 305 <tr class="css_sub css_aggregate" valign="top">
284 306 <th scope="row"><?php _e( 'Generate data: URIs for images?', 'autoptimize' ); ?></th>
285 -<td><label class="cb_label"><input type="checkbox" name="autoptimize_css_datauris" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_css_datauris' ) ? 'checked="checked" ' : ''; ?>/>
307 +<td><label class="cb_label"><input type="checkbox" name="autoptimize_css_datauris" <?php echo $conf->get( 'autoptimize_css_datauris' ) ? 'checked="checked" ' : ''; ?>/>
286 308 <?php _e( 'Enable this to include small background-images in the CSS itself instead of as separate downloads.', 'autoptimize' ); ?></label></td>
287 309 </tr>
288 310 <?php if ( autoptimizeOptionWrapper::get_option( 'autoptimize_css_justhead' ) ) { ?>
289 311 <tr valign="top" class="css_sub css_aggregate">
@@ -292,43 +314,50 @@
292 314 _e( 'Look for styles only in &lt;head&gt;?', 'autoptimize' );
293 315 echo ' <i>' . __( '(deprecated)', 'autoptimize' ) . '</i>';
294 316 ?>
295 317 </th>
296 -<td><label class="cb_label"><input type="checkbox" name="autoptimize_css_justhead" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_css_justhead' ) ? 'checked="checked" ' : ''; ?>/>
318 +<td><label class="cb_label"><input type="checkbox" name="autoptimize_css_justhead" <?php echo $conf->get( 'autoptimize_css_justhead' ) ? 'checked="checked" ' : ''; ?>/>
297 319 <?php _e( 'Don\'t autoptimize CSS outside the head-section. If the cache gets big, you might want to enable this.', 'autoptimize' ); ?></label></td>
298 320 </tr>
299 321 <?php } ?>
300 322 <tr valign="top" class="css_sub">
301 -<th scope="row"><?php _e( 'Inline and Defer CSS?', 'autoptimize' ); ?></th>
302 -<td><label class="cb_label"><input type="checkbox" name="autoptimize_css_defer" id="autoptimize_css_defer" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_css_defer' ) ? 'checked="checked" ' : ''; ?>/>
323 +<th scope="row"><?php _e( 'Eliminate render-blocking CSS?', 'autoptimize' ); ?></th>
324 +<td><label class="cb_label"><input type="checkbox" name="autoptimize_css_defer" id="autoptimize_css_defer" <?php echo $conf->get( 'autoptimize_css_defer' ) ? 'checked="checked" ' : ''; ?>/>
303 325 <?php
304 -_e( 'Inline "above the fold CSS" while loading the main autoptimized CSS only after page load. <a href="http://wordpress.org/plugins/autoptimize/faq/" target="_blank">Check the FAQ</a> for more info.', 'autoptimize' );
305 -if ( ! autoptimizeUtils::is_plugin_active( 'autoptimize-criticalcss/ao_criticss_aas.php' ) ) {
306 - echo ' ';
307 - $critcss_install_url = network_admin_url() . 'plugin-install.php?s=autoptimize+criticalcss&tab=search&type=term';
308 - // translators: links to plugin install screen with "autoptimize critical CSS" search.
309 - echo sprintf( __( 'This can be fully automated for different types of pages with the %s.', 'autoptimize' ), '<a href="' . $critcss_install_url . '">Autoptimize CriticalCSS Power-Up</a>' );
310 -}
326 +_e( 'Inline "above the fold CSS" while loading the main autoptimized CSS only after page load. <a href="https://wordpress.org/plugins/autoptimize/faq/" target="_blank">Check the FAQ</a> for more info.', 'autoptimize' );
327 +echo ' ';
328 +$critcss_settings_url = get_admin_url( null, 'options-general.php?page=ao_critcss' );
329 +// translators: links "autoptimize critical CSS" tab.
330 +echo sprintf( __( 'You can manually create rules for different types of pages or have this done fully automated on the %s tab.', 'autoptimize' ), '<a href="' . $critcss_settings_url . '">CriticalCSS</a>' );
311 331 ?>
312 332 </label></td>
313 333 </tr>
314 334 <tr valign="top" class="css_sub" id="autoptimize_css_defer_inline">
315 335 <th scope="row"></th>
316 -<td><label><textarea rows="10" cols="10" style="width:100%;" placeholder="<?php _e( 'Paste the above the fold CSS here. You can leave this empty when using the automated Critical CSS integration.', 'autoptimize' ); ?>" name="autoptimize_css_defer_inline"><?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_css_defer_inline' ); ?></textarea></label></td>
336 +<td><label><textarea rows="10" cols="10" style="width:100%;" placeholder="<?php _e( 'Paste the above the fold CSS here. You can leave this empty when using the automated Critical CSS integration.', 'autoptimize' ); ?>" name="autoptimize_css_defer_inline"><?php echo autoptimizeStyles::sanitize_css( autoptimizeOptionWrapper::get_option( 'autoptimize_css_defer_inline' ) ); ?></textarea></label></td>
317 337 </tr>
318 338 <tr valign="top" class="css_sub css_aggregate">
319 339 <th scope="row"><?php _e( 'Inline all CSS?', 'autoptimize' ); ?></th>
320 -<td><label class="cb_label"><input type="checkbox" id="autoptimize_css_inline" name="autoptimize_css_inline" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_css_inline' ) ? 'checked="checked" ' : ''; ?>/>
321 -<?php _e( 'Inlining all CSS can improve performance for sites with a low pageviews/ visitor-rate, but may slow down performance otherwise.', 'autoptimize' ); ?></label></td>
340 +<td><label class="cb_label"><input type="checkbox" id="autoptimize_css_inline" name="autoptimize_css_inline" <?php echo $conf->get( 'autoptimize_css_inline' ) ? 'checked="checked" ' : ''; ?>/>
341 +<?php _e( 'Inlining all CSS is an easy way to stop the CSS from being render-blocking, but is generally not recommended because the size of the HTML increases significantly. Additionally it might push meta-tags down to a position where e.g. Facebook and Whatsapp will not find them any more, breaking thumbnails when sharing.', 'autoptimize' ); ?></label></td>
322 342 </tr>
323 343 <tr valign="top" class="css_sub">
324 344 <th scope="row"><?php _e( 'Exclude CSS from Autoptimize:', 'autoptimize' ); ?></th>
325 -<td><label><input type="text" style="width:100%;" name="autoptimize_css_exclude" value="<?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_css_exclude', 'wp-content/cache/, wp-content/uploads/, admin-bar.min.css, dashicons.min.css' ); ?>"/><br />
345 +<td><label><input type="text" style="width:100%;" name="autoptimize_css_exclude" value="<?php echo esc_attr( $conf->get( 'autoptimize_css_exclude', '' ) ); ?>"/><br />
326 346 <?php
327 347 echo __( 'A comma-separated list of CSS you want to exclude from being optimized.', 'autoptimize' ) . ' ' . __( 'Important: excluded non-minified files are still minified by Autoptimize unless that option under "misc" is disabled.', 'autoptimize' );
328 348 ?>
329 349 </label></td>
330 350 </tr>
351 +<?php if ( false === autoptimizeUtils::is_plugin_active( 'unusedcss/unusedcss.php' ) ) { ?>
352 +<tr valign="top">
353 +<th scope="row"><?php _e( 'Remove Unused CSS?', 'autoptimize' ); ?></th>
354 +<?php
355 +$_rapidload_link = 'https://misc.optimizingmatters.com/partners/?from=csssettings&partner=rapidload';
356 +?>
357 +<td><?php echo sprintf( __( 'If Google Pagespeed Insights detects unused CSS, consider using %s to <strong>reduce your site\'s CSS size to up to 90&#37;</strong>, resulting in a slimmer, faster site!', 'autoptimize' ), '<a href="' . $_rapidload_link . '" target="_blank">the premium Rapidload service</a>' ); ?></td>
358 +</tr>
359 +<?php } ?>
331 360 </table>
332 361 </li>
333 362
334 363 <li class="itemDetail">
@@ -335,13 +364,13 @@
335 364 <h2 class="itemTitle"><?php _e( 'HTML Options', 'autoptimize' ); ?></h2>
336 365 <table class="form-table">
337 366 <tr valign="top">
338 367 <th scope="row"><?php _e( 'Optimize HTML Code?', 'autoptimize' ); ?></th>
339 -<td><input type="checkbox" id="autoptimize_html" name="autoptimize_html" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_html' ) ? 'checked="checked" ' : ''; ?>/></td>
368 +<td><input type="checkbox" id="autoptimize_html" name="autoptimize_html" <?php echo $conf->get( 'autoptimize_html' ) ? 'checked="checked" ' : ''; ?>/></td>
340 369 </tr>
341 370 <tr class="html_sub" valign="top">
342 371 <th scope="row"><?php _e( 'Keep HTML comments?', 'autoptimize' ); ?></th>
343 -<td><label class="cb_label"><input type="checkbox" name="autoptimize_html_keepcomments" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_html_keepcomments' ) ? 'checked="checked" ' : ''; ?>/>
372 +<td><label class="cb_label"><input type="checkbox" name="autoptimize_html_keepcomments" <?php echo $conf->get( 'autoptimize_html_keepcomments' ) ? 'checked="checked" ' : ''; ?>/>
344 373 <?php _e( 'Enable this if you want HTML comments to remain in the page.', 'autoptimize' ); ?></label></td>
345 374 </tr>
346 375 </table>
347 376 </li>
@@ -350,10 +379,23 @@
350 379 <h2 class="itemTitle"><?php _e( 'CDN Options', 'autoptimize' ); ?></h2>
351 380 <table class="form-table">
352 381 <tr valign="top">
353 382 <th scope="row"><?php _e( 'CDN Base URL', 'autoptimize' ); ?></th>
354 -<td><label><input id="cdn_url" type="text" name="autoptimize_cdn_url" pattern="^(https?:)?\/\/([\da-z\.-]+)\.([\da-z\.]{2,6})([\/\w \.-]*)*(:\d{2,5})?\/?$" style="width:100%" value="<?php echo esc_url( autoptimizeOptionWrapper::get_option( 'autoptimize_cdn_url', '' ), array( 'http', 'https' ) ); ?>" /><br />
355 -<?php _e( 'Enter your CDN root URL to enable CDN for Autoptimized files. The URL can be http, https or protocol-relative (e.g. <code>//cdn.example.com/</code>). This is not needed for Cloudflare.', 'autoptimize' ); ?></label></td>
383 +<?php
384 +if ( true === autoptimizeImages::imgopt_active() && true === apply_filters( 'autoptimize_filter_cdn_set_by_imgopt', false ) ) {
385 + // cdn set by imgopt, not to be changealbe in the settings.
386 + $cdn_editable = 'disabled';
387 + $cdn_placeholder = 'placeholder="' . __( 'The CDN has automatically been set to make use of the image optimization CDN.', 'autoptimize' ) . ' "';
388 + $cdn_description = '';
389 +} else {
390 + $cdn_editable = '';
391 + $cdn_placeholder = 'placeholder="' . __( 'example: //cdn.yoursite.com/', 'autoptimize' ) . ' "';
392 + $cdn_description = __( 'Enter your CDN root URL to enable CDN for Autoptimized files. The URL can be http, https or protocol-relative. This is not needed for Cloudflare.', 'autoptimize' );
393 +}
394 +?>
395 +<td><label><input id="cdn_url" type="text" name="autoptimize_cdn_url" pattern="^(https?:)?\/\/([\da-z\.-]+)\.([\da-z\.]{2,6})([\/\w \.-]*)*(:\d{2,5})?\/?$" style="width:100%" <?php echo $cdn_placeholder . $cdn_editable; ?> value="<?php echo esc_url( autoptimizeOptionWrapper::get_option( 'autoptimize_cdn_url', '' ), array( 'http', 'https' ) ); ?>" /><br />
396 +<?php echo $cdn_description; ?>
397 +</label></td>
356 398 </tr>
357 399 </table>
358 400 </li>
359 401
@@ -379,9 +421,9 @@
379 421 if ( $ao_cache_size > 0 ) {
380 422 $details = ', ~' . $ao_cache_size . ' total';
381 423 }
382 424 // translators: Kilobytes + timestamp shown.
383 - printf( __( '%1$s files, totalling %2$s Kbytes (calculated at %3$s)', 'autoptimize' ), $ao_stat_arr[0], $ao_cache_size, date( 'H:i e', $ao_stat_arr[2] ) );
425 + printf( __( '%1$s files, totalling %2$s (calculated at %3$s)', 'autoptimize' ), $ao_stat_arr[0], $ao_cache_size, date( 'H:i e', $ao_stat_arr[2] ) );
384 426 }
385 427 ?>
386 428 </td>
387 429 </tr>
@@ -392,9 +434,9 @@
392 434 <h2 class="itemTitle"><?php _e( 'Misc Options', 'autoptimize' ); ?></h2>
393 435 <table class="form-table">
394 436 <tr valign="top" >
395 437 <th scope="row"><?php _e( 'Save aggregated script/css as static files?', 'autoptimize' ); ?></th>
396 - <td><label class="cb_label"><input type="checkbox" name="autoptimize_cache_nogzip" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_cache_nogzip', '1' ) ? 'checked="checked" ' : ''; ?>/>
438 + <td><label class="cb_label"><input type="checkbox" name="autoptimize_cache_nogzip" <?php echo $conf->get( 'autoptimize_cache_nogzip') ? 'checked="checked" ' : ''; ?>/>
397 439 <?php _e( 'By default files saved are static css/js, uncheck this option if your webserver doesn\'t properly handle the compression and expiry.', 'autoptimize' ); ?></label></td>
398 440 </tr>
399 441 <?php
400 442 $_min_excl_class = '';
@@ -403,14 +445,19 @@
403 445 }
404 446 ?>
405 447 <tr valign="top" id="min_excl_row" class="<?php echo $_min_excl_class; ?>">
406 448 <th scope="row"><?php _e( 'Minify excluded CSS and JS files?', 'autoptimize' ); ?></th>
407 - <td><label class="cb_label"><input type="checkbox" name="autoptimize_minify_excluded" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_minify_excluded', '1' ) ? 'checked="checked" ' : ''; ?>/>
449 + <td><label class="cb_label"><input type="checkbox" name="autoptimize_minify_excluded" <?php echo $conf->get( 'autoptimize_minify_excluded' ) ? 'checked="checked" ' : ''; ?>/>
408 450 <?php _e( 'When aggregating JS or CSS, excluded files that are not minified (based on filename) are by default minified by Autoptimize despite being excluded. Uncheck this option if anything breaks despite excluding.', 'autoptimize' ); ?></label></td>
409 451 </tr>
410 452 <tr valign="top">
453 + <th scope="row"><?php _e( 'Enable 404 fallbacks?', 'autoptimize' ); ?></th>
454 + <td><label class="cb_label"><input type="checkbox" name="autoptimize_cache_fallback" <?php echo $conf->get( 'autoptimize_cache_fallback' ) ? 'checked="checked" ' : ''; ?>/>
455 + <?php _e( 'Sometimes Autoptimized JS/ CSS is referenced in cached HTML but is already removed, resulting in broken sites. With this option on, Autoptimize will try to redirect those not-found files to "fallback"-versions, keeping the page/ site somewhat intact. In some cases this will require extra web-server level configuration to ensure <code>wp-content/autoptimize_404_handler.php</code> is set to handle 404\'s in <code>wp-content/cache/autoptimize</code>.', 'autoptimize' ); ?></label></td>
456 + </tr>
457 + <tr valign="top">
411 458 <th scope="row"><?php _e( 'Also optimize for logged in editors/ administrators?', 'autoptimize' ); ?></th>
412 - <td><label class="cb_label"><input type="checkbox" name="autoptimize_optimize_logged" <?php echo get_option( 'autoptimize_optimize_logged', '1' ) ? 'checked="checked" ' : ''; ?>/>
459 + <td><label class="cb_label"><input type="checkbox" name="autoptimize_optimize_logged" <?php echo $conf->get( 'autoptimize_optimize_logged' ) ? 'checked="checked" ' : ''; ?>/>
413 460 <?php _e( 'By default Autoptimize is also active for logged on editors/ administrators, uncheck this option if you don\'t want Autoptimize to optimize when logged in e.g. to use a pagebuilder.', 'autoptimize' ); ?></label></td>
414 461 </tr>
415 462 <?php
416 463 if ( function_exists( 'is_checkout' ) || function_exists( 'is_cart' ) || function_exists( 'edd_is_checkout' ) || function_exists( 'wpsc_is_cart' ) || function_exists( 'wpsc_is_checkout' ) ) {
@@ -416,13 +463,22 @@
416 463 if ( function_exists( 'is_checkout' ) || function_exists( 'is_cart' ) || function_exists( 'edd_is_checkout' ) || function_exists( 'wpsc_is_cart' ) || function_exists( 'wpsc_is_checkout' ) ) {
417 464 ?>
418 465 <tr valign="top" >
419 466 <th scope="row"><?php _e( 'Also optimize shop cart/ checkout?', 'autoptimize' ); ?></th>
420 - <td><label class="cb_label"><input type="checkbox" name="autoptimize_optimize_checkout" <?php echo autoptimizeOptionWrapper::get_option( 'autoptimize_optimize_checkout', '0' ) ? 'checked="checked" ' : ''; ?>/>
467 + <td><label class="cb_label"><input type="checkbox" name="autoptimize_optimize_checkout" <?php echo $conf->get( 'autoptimize_optimize_checkout' ) ? 'checked="checked" ' : ''; ?>/>
421 468 <?php _e( 'By default Autoptimize is also active on your shop\'s cart/ checkout, uncheck not to optimize those.', 'autoptimize' ); ?></label>
422 469 </td>
423 470 </tr>
424 471 <?php } ?>
472 + <?php
473 + if ( true === apply_filters( 'autoptimize_filter_enable_meta_ao_settings', true ) ) {
474 + ?>
475 + <tr valign="top">
476 + <th scope="row"><?php _e( 'Enable configuration per post/ page?', 'autoptimize' ); ?></th>
477 + <td><label class="cb_label"><input type="checkbox" name="autoptimize_enable_meta_ao_settings" <?php echo $conf->get( 'autoptimize_enable_meta_ao_settings' ) ? 'checked="checked" ' : ''; ?>/>
478 + <?php _e( 'Add a "metabox" to the post/ page edit screen allowing different optimizations to be turned off on a per post/ page level?', 'autoptimize' ); ?></label></td>
479 + </tr>
480 + <?php } ?>
425 481 </table>
426 482 </li>
427 483
428 484 </ul>
@@ -433,9 +489,10 @@
433 489 </p>
434 490
435 491 </form>
436 492 </div>
437 -<div id="autoptimize_admin_feed" class="hidden">
493 +<div id="autoptimize_admin_feed">
494 + <?php if ( apply_filters( 'autoptimize_filter_show_partner_tabs', true ) ) { ?>
438 495 <div class="autoptimize_banner hidden">
439 496 <ul>
440 497 <?php
441 498 if ( $this->settings_screen_do_remote_http ) {
@@ -455,50 +512,29 @@
455 512 <li><?php _e( "Need help? <a href='https://wordpress.org/plugins/autoptimize/faq/'>Check out the FAQ here</a>.", 'autoptimize' ); ?></li>
456 513 <li><?php _e( 'Happy with Autoptimize?', 'autoptimize' ); ?><br /><a href="<?php echo network_admin_url(); ?>plugin-install.php?tab=search&type=author&s=optimizingmatters"><?php _e( 'Try my other plugins!', 'autoptimize' ); ?></a></li>
457 514 </ul>
458 515 </div>
516 + <?php } ?>
459 517 <div style="margin-left:10px;margin-top:-5px;">
460 518 <h2>
461 - <?php _e( 'futtta about', 'autoptimize' ); ?>
462 - <select id="feed_dropdown" >
463 - <option value="1"><?php _e( 'Autoptimize', 'autoptimize' ); ?></option>
464 - <option value="2"><?php _e( 'WordPress', 'autoptimize' ); ?></option>
465 - <option value="3"><?php _e( 'Web Technology', 'autoptimize' ); ?></option>
466 - </select>
519 + <?php _e( 'Autoptimize news', 'autoptimize' ); ?>
467 520 </h2>
468 521 <div id="futtta_feed">
469 522 <div id="autoptimizefeed">
470 523 <?php $this->get_futtta_feeds( 'http://feeds.feedburner.com/futtta_autoptimize' ); ?>
471 524 </div>
472 - <div id="wordpressfeed">
473 - <?php $this->get_futtta_feeds( 'http://feeds.feedburner.com/futtta_wordpress' ); ?>
474 - </div>
475 - <div id="webtechfeed">
476 - <?php $this->get_futtta_feeds( 'http://feeds.feedburner.com/futtta_webtech' ); ?>
477 - </div>
478 525 </div>
479 526 </div>
480 - <div style="float:right;margin:50px 15px;"><a href="http://blog.futtta.be/2013/10/21/do-not-donate-to-me/" target="_blank"><img width="100px" height="85px" src="<?php echo plugins_url() . '/' . plugin_basename( dirname( __FILE__ ) ) . '/external/do_not_donate_smallest.png'; ?>" title="<?php _e( 'Do not donate for this plugin!', 'autoptimize' ); ?>"></a></div>
527 + <?php if ( apply_filters( 'autoptimize_filter_show_partner_tabs', true ) ) { ?>
528 + <div style="float:right;margin:50px 15px;"><a href="https://blog.futtta.be/2013/10/21/do-not-donate-to-me/" target="_blank"><img width="100px" height="85px" src="<?php echo plugins_url() . '/' . plugin_basename( dirname( __FILE__ ) ) . '/external/do_not_donate_smallest.png'; ?>" title="<?php _e( 'Do not donate for this plugin!', 'autoptimize' ); ?>"></a></div>
529 + <?php } ?>
481 530 </div>
482 -
483 531 <script type="text/javascript">
484 - var feed = new Array;
485 - feed[1]="autoptimizefeed";
486 - feed[2]="wordpressfeed";
487 - feed[3]="webtechfeed";
488 - cookiename="autoptimize_feed";
489 -
490 532 jQuery(document).ready(function() {
491 533 check_ini_state();
492 534
493 - jQuery('#autoptimize_admin_feed').fadeTo("slow",1).show();
494 535 jQuery('.autoptimize_banner').unslider({autoplay:true, delay:3500, infinite: false, arrows:{prev:'<a class="unslider-arrow prev"></a>', next:'<a class="unslider-arrow next"></a>'}}).fadeTo("slow",1).show();
495 536
496 - jQuery( "#feed_dropdown" ).change(function() {
497 - jQuery("#futtta_feed").fadeTo(0,0);
498 - jQuery("#futtta_feed").fadeTo("slow",1);
499 - });
500 -
501 537 jQuery( "#autoptimize_html" ).change(function() {
502 538 if (this.checked) {
503 539 jQuery(".html_sub:visible").fadeTo("fast",1);
504 540 } else {
@@ -514,18 +550,39 @@
514 550 }
515 551 });
516 552
517 553 jQuery( "#autoptimize_js_aggregate" ).change(function() {
518 - if (this.checked && jQuery("#autoptimize_js").attr('checked')) {
519 - jQuery(".js_aggregate:visible").fadeTo("fast",1);
520 - jQuery( "#min_excl_row" ).show();
554 + if (this.checked && jQuery("#autoptimize_js").prop('checked')) {
555 + jQuery( "#autoptimize_js_defer_not_aggregate" ).prop( 'checked', false ); // uncheck "defer not aggregate"
556 + jQuery( ".js_aggregate_master:visible" ).fadeTo( 'slow', 1 ); // ungrey self
557 + jQuery( ".js_aggregate" ).show( 'slow' ); // show sub-items
558 + jQuery( ".js_not_aggregate_master:visible" ).fadeTo( 'slow', .33 ); // grey out "not aggregate"
559 + jQuery( ".js_not_aggregate" ).hide( 'slow' ); // hide not aggregate sub-items
560 + jQuery( "#min_excl_row" ).show(); // make sure "minify excluded" is visible
561 + check_exclusions( "js", "on" );
521 562 } else {
522 - jQuery(".js_aggregate:visible").fadeTo("fast",.33);
523 - if ( jQuery( "#autoptimize_css_aggregate" ).prop('checked') == false ) {
563 + jQuery( ".js_aggregate" ).hide( 'slow' ); // hide sub-itmes
564 + jQuery( ".js_not_aggregate_master:visible" ).fadeTo( 'slow', 1 ); // un-grey-out "not aggregate"
565 + if ( jQuery( "#autoptimize_css_aggregate" ).prop( 'checked' ) == false ) { // hide "minify excluded"
524 566 jQuery( "#min_excl_row" ).hide();
525 567 }
568 + check_exclusions( "js", "off" );
526 569 }
527 570 });
571 +
572 + jQuery( "#autoptimize_js_defer_not_aggregate" ).change(function() {
573 + if (this.checked && jQuery("#autoptimize_js").prop('checked')) {
574 + jQuery( "#autoptimize_js_aggregate" ).prop( 'checked', false ); // uncheck "aggregate JS"
575 + jQuery( ".js_not_aggregate_master:visible" ).fadeTo( 'slow', 1 ); // ungrey self
576 + jQuery( ".js_not_aggregate" ).show( 'slow'); // show sub-items
577 + jQuery( ".js_aggregate_master:visible" ).fadeTo( 'slow', .33 ); // grey out "aggregate"
578 + jQuery( ".js_aggregate" ).hide( 'slow' ); // hide aggregate sub-items
579 + check_exclusions( "js", "off" );
580 + } else {
581 + jQuery( ".js_not_aggregate" ).hide( 'slow' ); // hide sub-items
582 + jQuery( ".js_aggregate_master:visible" ).fadeTo( 'slow', 1 ); // un-grey-out "aggregate"
583 + }
584 + });
528 585
529 586 jQuery( "#autoptimize_css" ).change(function() {
530 587 if (this.checked) {
531 588 jQuery(".css_sub:visible").fadeTo("fast",1);
@@ -534,16 +591,18 @@
534 591 }
535 592 });
536 593
537 594 jQuery( "#autoptimize_css_aggregate" ).change(function() {
538 - if (this.checked && jQuery("#autoptimize_css").attr('checked')) {
595 + if (this.checked && jQuery("#autoptimize_css").prop('checked')) {
539 596 jQuery(".css_aggregate:visible").fadeTo("fast",1);
540 597 jQuery( "#min_excl_row" ).show();
598 + check_exclusions( "css", "on" );
541 599 } else {
542 600 jQuery(".css_aggregate:visible").fadeTo("fast",.33);
543 601 if ( jQuery( "#autoptimize_js_aggregate" ).prop('checked') == false ) {
544 602 jQuery( "#min_excl_row" ).hide();
545 603 }
604 + check_exclusions( "css", "off" );
546 605 }
547 606 });
548 607
549 608 jQuery( "#autoptimize_css_inline" ).change(function() {
@@ -568,13 +627,8 @@
568 627 } else {
569 628 jQuery("li.itemDetail:not(.multiSite)").fadeTo("fast",1);
570 629 }
571 630 });
572 -
573 - jQuery("#feed_dropdown").change(function() { show_feed(jQuery("#feed_dropdown").val()) });
574 - feedid=jQuery.cookie(cookiename);
575 - if(typeof(feedid) !== "string") feedid=1;
576 - show_feed(feedid);
577 631 })
578 632
579 633 // validate cdn_url.
580 634 var cdn_url=document.getElementById("cdn_url");
@@ -588,36 +642,56 @@
588 642 }});
589 643 }
590 644
591 645 function check_ini_state() {
592 - if (!jQuery("#autoptimize_css_defer").attr('checked')) {
646 + if (!jQuery("#autoptimize_css_defer").prop('checked')) {
593 647 jQuery("#autoptimize_css_defer_inline").hide();
594 648 }
595 - if (!jQuery("#autoptimize_html").attr('checked')) {
649 + if (!jQuery("#autoptimize_html").prop('checked')) {
596 650 jQuery(".html_sub:visible").fadeTo('fast',.33);
597 651 }
598 - if (!jQuery("#autoptimize_css").attr('checked')) {
652 + if (!jQuery("#autoptimize_css").prop('checked')) {
599 653 jQuery(".css_sub:visible").fadeTo('fast',.33);
600 654 }
601 - if (!jQuery("#autoptimize_css_aggregate").attr('checked')) {
655 + if (!jQuery("#autoptimize_css_aggregate").prop('checked')) {
602 656 jQuery(".css_aggregate:visible").fadeTo('fast',.33);
603 657 }
604 - if (!jQuery("#autoptimize_js").attr('checked')) {
605 - jQuery(".js_sub:visible").fadeTo('fast',.33);
658 + if (jQuery("#autoptimize_js_aggregate").prop('checked')) {
659 + jQuery( ".js_aggregate" ).show( 'fast' );
660 + jQuery( ".js_not_aggregate_master:visible" ).fadeTo( 'fast', .33 );
606 661 }
607 - if (!jQuery("#autoptimize_js_aggregate").attr('checked')) {
608 - jQuery(".js_aggregate:visible").fadeTo('fast',.33);
662 + if (jQuery("#autoptimize_js_defer_not_aggregate").prop('checked')) {
663 + jQuery( ".js_not_aggregate" ).show( 'fast' );
664 + jQuery( ".js_aggregate_master:visible" ).fadeTo( 'fast', .33 );
609 665 }
610 - if (jQuery("#autoptimize_enable_site_config").attr('checked')) {
666 + if (jQuery("#autoptimize_enable_site_config").prop('checked')) {
611 667 jQuery("li.itemDetail:not(.multiSite)").fadeTo('fast',.33);
612 668 }
669 + if (!jQuery("#autoptimize_js").prop('checked')) {
670 + jQuery(".js_sub:visible").fadeTo('fast',.33);
671 + }
613 672 }
673 +
674 + function check_exclusions( what, state ) {
675 + exclusion_node = 'input[name="autoptimize_' + what + '_exclude"]';
676 + current_exclusion = jQuery( exclusion_node ).val();
614 677
615 - function show_feed(id) {
616 - jQuery('#futtta_feed').children().hide();
617 - jQuery('#'+feed[id]).show();
618 - jQuery("#feed_dropdown").val(id);
619 - jQuery.cookie(cookiename,id,{ expires: 365 });
678 + if ( what == "js" ) {
679 + default_exclusion = ", wp-includes/js/dist/, wp-includes/js/tinymce/, js/jquery/jquery.min.js";
680 + } else if ( what == "css") {
681 + default_exclusion = ", admin-bar.min.css, dashicons.min.css, wp-content/cache/, wp-content/uploads/";
682 + }
683 +
684 + default_in_current = current_exclusion.indexOf(default_exclusion);
685 +
686 + if ( state == "on" && default_in_current == -1 ) {
687 + jQuery( exclusion_node ).val( current_exclusion + default_exclusion );
688 + } else if ( state = "off" && current_exclusion == default_exclusion ) {
689 + jQuery( exclusion_node ).val( "" );
690 + } else if ( state = "off" && default_in_current != -1 ) {
691 + new_exclusion = current_exclusion.substring( 0, default_in_current) + current_exclusion.substring( default_in_current + default_exclusion.length, current_exclusion.length );
692 + jQuery( exclusion_node ).val( new_exclusion );
693 + }
620 694 }
621 695 </script>
622 696 </div>
623 697
@@ -625,14 +699,18 @@
625 699 }
626 700
627 701 public function addmenu()
628 702 {
629 - if ( is_network_admin() && autoptimizeOptionWrapper::is_ao_active_for_network() ) {
630 - $hook = add_submenu_page( 'settings.php', __( 'Autoptimize Options', 'autoptimize' ), 'Autoptimize', 'manage_network_options', 'autoptimize', array( $this, 'show_config' ) );
631 - } elseif ( ! is_multisite() || 'on' === autoptimizeOptionWrapper::get_option( 'autoptimize_enable_site_config' ) ) {
632 - $hook = add_options_page( __( 'Autoptimize Options', 'autoptimize' ), 'Autoptimize', 'manage_options', 'autoptimize', array( $this, 'show_config' ) );
703 + $_my_name = apply_filters( 'autoptimize_filter_settings_is_pro', false ) ? __( 'Autoptimize Pro', 'autoptimize' ) : __( 'Autoptimize', 'autoptimize' );
704 + if ( is_multisite() && is_network_admin() && autoptimizeOptionWrapper::is_ao_active_for_network() ) {
705 + // multisite, network admin, ao network activated: add normal settings page at network level.
706 + $hook = add_submenu_page( 'settings.php', __( 'Autoptimize Options', 'autoptimize' ), $_my_name, 'manage_network_options', 'autoptimize', array( $this, 'show_config' ) );
707 + } elseif ( is_multisite() && ! is_network_admin() && autoptimizeOptionWrapper::is_ao_active_for_network() && 'on' !== autoptimizeOptionWrapper::get_option( 'autoptimize_enable_site_config' ) ) {
708 + // multisite, ao network activated, not network admin so site specific settings, but "autoptimize_enable_site_config" is off: show "sorry, ask network admin" message iso options.
709 + $hook = add_options_page( __( 'Autoptimize Options', 'autoptimize' ), $_my_name, 'manage_options', 'autoptimize', array( $this, 'show_network_message' ) );
633 710 } else {
634 - $hook = add_options_page( __( 'Autoptimize Options', 'autoptimize' ), 'Autoptimize', 'manage_options', 'autoptimize', array( $this, 'show_network_message' ) );
711 + // default: show normal options page if not multisite, if multisite but not network activated, if multisite and network activated and "autoptimize_enable_site_config" is on.
712 + $hook = add_options_page( __( 'Autoptimize Options', 'autoptimize' ), $_my_name, 'manage_options', 'autoptimize', array( $this, 'show_config' ) );
635 713 }
636 714
637 715 add_action( 'admin_print_scripts-' . $hook, array( $this, 'autoptimize_admin_scripts' ) );
638 716 add_action( 'admin_print_styles-' . $hook, array( $this, 'autoptimize_admin_styles' ) );
@@ -639,9 +717,8 @@
639 717 }
640 718
641 719 public function autoptimize_admin_scripts()
642 720 {
643 - wp_enqueue_script( 'jqcookie', plugins_url( '/external/js/jquery.cookie.min.js', __FILE__ ), array( 'jquery' ), null, true );
644 721 wp_enqueue_script( 'unslider', plugins_url( '/external/js/unslider-min.js', __FILE__ ), array( 'jquery' ), null, true );
645 722 }
646 723
647 724 public function autoptimize_admin_styles()
@@ -655,8 +732,10 @@
655 732 register_setting( 'autoptimize', 'autoptimize_html_keepcomments' );
656 733 register_setting( 'autoptimize', 'autoptimize_enable_site_config' );
657 734 register_setting( 'autoptimize', 'autoptimize_js' );
658 735 register_setting( 'autoptimize', 'autoptimize_js_aggregate' );
736 + register_setting( 'autoptimize', 'autoptimize_js_defer_not_aggregate' );
737 + register_setting( 'autoptimize', 'autoptimize_js_defer_inline' );
659 738 register_setting( 'autoptimize', 'autoptimize_js_exclude' );
660 739 register_setting( 'autoptimize', 'autoptimize_js_trycatch' );
661 740 register_setting( 'autoptimize', 'autoptimize_js_justhead' );
662 741 register_setting( 'autoptimize', 'autoptimize_js_forcehead' );
@@ -675,8 +754,10 @@
675 754 register_setting( 'autoptimize', 'autoptimize_cache_nogzip' );
676 755 register_setting( 'autoptimize', 'autoptimize_optimize_logged' );
677 756 register_setting( 'autoptimize', 'autoptimize_optimize_checkout' );
678 757 register_setting( 'autoptimize', 'autoptimize_minify_excluded' );
758 + register_setting( 'autoptimize', 'autoptimize_cache_fallback' );
759 + register_setting( 'autoptimize', 'autoptimize_enable_meta_ao_settings' );
679 760 }
680 761
681 762 public function setmeta( $links, $file = null )
682 763 {
@@ -710,32 +791,36 @@
710 791 */
711 792 public static function get_defaults()
712 793 {
713 794 static $config = array(
714 - 'autoptimize_html' => 0,
715 - 'autoptimize_html_keepcomments' => 0,
716 - 'autoptimize_enable_site_config' => 1,
717 - 'autoptimize_js' => 0,
718 - 'autoptimize_js_aggregate' => 1,
719 - 'autoptimize_js_exclude' => 'wp-includes/js/dist/, wp-includes/js/tinymce/, js/jquery/jquery.js',
720 - 'autoptimize_js_trycatch' => 0,
721 - 'autoptimize_js_justhead' => 0,
722 - 'autoptimize_js_include_inline' => 0,
723 - 'autoptimize_js_forcehead' => 0,
724 - 'autoptimize_css' => 0,
725 - 'autoptimize_css_aggregate' => 1,
726 - 'autoptimize_css_exclude' => 'admin-bar.min.css, dashicons.min.css, wp-content/cache/, wp-content/uploads/',
727 - 'autoptimize_css_justhead' => 0,
728 - 'autoptimize_css_include_inline' => 1,
729 - 'autoptimize_css_defer' => 0,
730 - 'autoptimize_css_defer_inline' => '',
731 - 'autoptimize_css_inline' => 0,
732 - 'autoptimize_css_datauris' => 0,
733 - 'autoptimize_cdn_url' => '',
734 - 'autoptimize_cache_nogzip' => 1,
735 - 'autoptimize_optimize_logged' => 1,
736 - 'autoptimize_optimize_checkout' => 0,
737 - 'autoptimize_minify_excluded' => 1,
795 + 'autoptimize_html' => 0,
796 + 'autoptimize_html_keepcomments' => 0,
797 + 'autoptimize_enable_site_config' => 1,
798 + 'autoptimize_js' => 0,
799 + 'autoptimize_js_aggregate' => 0,
800 + 'autoptimize_js_defer_not_aggregate' => 1,
801 + 'autoptimize_js_defer_inline' => 1,
802 + 'autoptimize_js_exclude' => '', // 'wp-includes/js/dist/, wp-includes/js/tinymce/, js/jquery/jquery.min.js',
803 + 'autoptimize_js_trycatch' => 0,
804 + 'autoptimize_js_justhead' => 0,
805 + 'autoptimize_js_include_inline' => 0,
806 + 'autoptimize_js_forcehead' => 0,
807 + 'autoptimize_css' => 0,
808 + 'autoptimize_css_aggregate' => 0,
809 + 'autoptimize_css_exclude' => '', // admin-bar.min.css, dashicons.min.css, wp-content/cache/, wp-content/uploads/',
810 + 'autoptimize_css_justhead' => 0,
811 + 'autoptimize_css_include_inline' => 0,
812 + 'autoptimize_css_defer' => 0,
813 + 'autoptimize_css_defer_inline' => '',
814 + 'autoptimize_css_inline' => 0,
815 + 'autoptimize_css_datauris' => 0,
816 + 'autoptimize_cdn_url' => '',
817 + 'autoptimize_cache_nogzip' => 1,
818 + 'autoptimize_optimize_logged' => 1,
819 + 'autoptimize_optimize_checkout' => 0,
820 + 'autoptimize_minify_excluded' => 1,
821 + 'autoptimize_cache_fallback' => 1,
822 + 'autoptimize_enable_meta_ao_settings' => 1,
738 823 );
739 824
740 825 return $config;
741 826 }
@@ -753,8 +838,9 @@
753 838 'autoptimize_extra_radio_field_4' => '1',
754 839 'autoptimize_extra_text_field_2' => '',
755 840 'autoptimize_extra_text_field_3' => '',
756 841 'autoptimize_extra_text_field_7' => '',
842 + 'autoptimize_extra_checkbox_field_8' => '0',
757 843 );
758 844
759 845 return $defaults;
760 846 }
@@ -771,31 +857,24 @@
771 857 'autoptimize_imgopt_select_field_2' => '2', // quality glossy.
772 858 'autoptimize_imgopt_checkbox_field_3' => '0', // lazy load off.
773 859 'autoptimize_imgopt_checkbox_field_4' => '0', // webp off (might be removed).
774 860 'autoptimize_imgopt_text_field_5' => '', // lazy load exclusions empty.
861 + 'autoptimize_imgopt_text_field_6' => '', // optimization exclusions empty.
862 + 'autoptimize_imgopt_number_field_7' => '2', // lazy load from nth image (0 = lazyload all).
775 863 );
776 864 return $defaults;
777 865 }
778 866
779 867 /**
780 - * Returns preload polyfill JS.
868 + * Returns preload JS onload handler.
781 869 *
782 - * @return string
783 - */
784 - public static function get_ao_css_preload_polyfill()
785 - {
786 - $preload_poly = apply_filters( 'autoptimize_css_preload_polyfill', '<script data-cfasync=\'false\'>!function(t){"use strict";t.loadCSS||(t.loadCSS=function(){});var e=loadCSS.relpreload={};if(e.support=function(){var e;try{e=t.document.createElement("link").relList.supports("preload")}catch(t){e=!1}return function(){return e}}(),e.bindMediaToggle=function(t){function e(){t.media=a}var a=t.media||"all";t.addEventListener?t.addEventListener("load",e):t.attachEvent&&t.attachEvent("onload",e),setTimeout(function(){t.rel="stylesheet",t.media="only x"}),setTimeout(e,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getElementsByTagName("link"),n=0;n<a.length;n++){var o=a[n];"preload"!==o.rel||"style"!==o.getAttribute("as")||o.getAttribute("data-loadcss")||(o.setAttribute("data-loadcss",!0),e.bindMediaToggle(o))}},!e.support()){e.poly();var a=t.setInterval(e.poly,500);t.addEventListener?t.addEventListener("load",function(){e.poly(),t.clearInterval(a)}):t.attachEvent&&t.attachEvent("onload",function(){e.poly(),t.clearInterval(a)})}"undefined"!=typeof exports?exports.loadCSS=loadCSS:t.loadCSS=loadCSS}("undefined"!=typeof global?global:this);</script>' );
787 - return $preload_poly;
788 - }
789 -
790 - /**
791 - * Returns preload JS onload handler.
870 + * @param string $media media attribute value the JS to use.
792 871 *
793 872 * @return string
794 873 */
795 - public static function get_ao_css_preload_onload()
874 + public static function get_ao_css_preload_onload( $media = 'all' )
796 875 {
797 - $preload_onload = apply_filters( 'autoptimize_filter_css_preload_onload', "this.onload=null;this.rel='stylesheet'" );
876 + $preload_onload = apply_filters( 'autoptimize_filter_css_preload_onload', "this.onload=null;this.media='" . $media . "';" );
798 877 return $preload_onload;
799 878 }
800 879
801 880 public function get( $key )
@@ -910,11 +989,84 @@
910 989 *
911 990 * @return bool
912 991 */
913 992 public static function should_show_menu_tabs() {
914 - if ( ! is_multisite() || is_network_admin() || 'on' === autoptimizeOptionWrapper::get_option( 'autoptimize_enable_site_config' ) ) {
993 + if ( ! is_multisite() || is_network_admin() || 'on' === autoptimizeOptionWrapper::get_option( 'autoptimize_enable_site_config' ) || false === autoptimizeOptionWrapper::is_ao_active_for_network() ) {
915 994 return true;
916 995 } else {
917 996 return false;
918 997 }
998 + }
999 +
1000 + /**
1001 + * Returns the post meta AO settings for reuse in different optimizers.
1002 + *
1003 + * @return bool
1004 + */
1005 + public static function get_post_meta_ao_settings( $optim ) {
1006 + if ( ! autoptimizeConfig::is_ao_meta_settings_active() ) {
1007 + // Per page/post settings not active, so always return true (as in; can be optimized).
1008 + if ( in_array( $optim, array( 'ao_post_preload' ) ) ) {
1009 + // but make sure to return false for text input.
1010 + return false;
1011 + }
1012 + return true;
1013 + }
1014 +
1015 + static $_meta_value = null;
1016 + if ( null === $_meta_value ) {
1017 + global $wp_query;
1018 + if ( isset( $wp_query ) && ( is_page() || is_single() ) ) {
1019 + $_meta_value = get_post_meta( get_the_ID(), 'ao_post_optimize', true );
1020 + } else if ( isset( $wp_query ) ) {
1021 + $_meta_value = false;
1022 + }
1023 + }
1024 +
1025 + // If autoptimize_post_optimize !== 'on' (except for ao_post_preload, which can have other values) then always return false as all is off.
1026 + // fixme: need unit tests to ensure below logic is sane!
1027 + if ( empty( $_meta_value ) || ! is_array( $_meta_value ) ) {
1028 + // no metabox values so all optimizations are a go.
1029 + if ( in_array( $optim, array( 'ao_post_preload' ) ) ) {
1030 + // but make sure to return false for text input.
1031 + return false;
1032 + }
1033 + return true;
1034 + } else if ( array_key_exists( 'ao_post_optimize', $_meta_value ) && 'on' !== $_meta_value['ao_post_optimize'] ) {
1035 + // ao entirely off for this page.
1036 + return false;
1037 + } else if ( array_key_exists( $optim, $_meta_value ) && empty( $_meta_value[$optim] ) ) {
1038 + // sub-optimization off for this page.
1039 + return false;
1040 + } else if ( array_key_exists( $optim, $_meta_value ) && 'on' === $_meta_value[$optim] ) {
1041 + // sub-optimization is explictly on.
1042 + return true;
1043 + } else if ( array_key_exists( $optim, $_meta_value ) && in_array( $optim, array( 'ao_post_preload' ) ) && ! empty( $_meta_value[$optim] ) ) {
1044 + // a non-bool metabox optimization (currently only preload field), return value instead of bool.
1045 + return $_meta_value[$optim];
1046 + } else if ( in_array( $optim, array( 'ao_post_preload' ) ) && ( ! array_key_exists( $optim, $_meta_value ) || empty( $_meta_value[$optim] ) ) ) {
1047 + // a non-bool metabox optimization not found or empty, so returning false.
1048 + return false;
1049 + } else {
1050 + // when in doubt "go" for optimization, but this should never happen?
1051 + if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
1052 + error_log( 'AO metabox logic fallback; well, how did I get here? Maybe this helps: looking for ' . $optim . ' in ' . json_encode( $_meta_value ) );
1053 + }
1054 + return true;
1055 + }
1056 + }
1057 +
1058 + /**
1059 + * Are the post meta AO settings active (default: no)?
1060 + *
1061 + * @return bool
1062 + */
1063 + public static function is_ao_meta_settings_active() {
1064 + static $_meta_settings_active = null;
1065 +
1066 + if ( null === $_meta_settings_active ) {
1067 + $_meta_settings_active = apply_filters( 'autoptimize_filter_enable_meta_ao_settings', autoptimizeOptionWrapper::get_option( 'autoptimize_enable_meta_ao_settings', '1' ) );
1068 + }
1069 +
1070 + return $_meta_settings_active;
919 1071 }
920 1072 }