@@ -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,7 +3,10 @@ |
||
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' ) ) { |
|
7 | + exit; |
|
8 | +} |
|
9 | +// Exit if accessed directly |
|
7 | 10 | |
8 | 11 | $majorUp = false; |
9 | 12 | $autoptimize_major_version=substr($autoptimize_db_version,0,3); |
@@ -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; ?> |
@@ -3,7 +3,10 @@ |
||
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' ) ) { |
|
7 | + exit; |
|
8 | +} |
|
9 | +// Exit if accessed directly |
|
7 | 10 | |
8 | 11 | add_action('admin_init', 'ao_partner_tabs_preinit'); |
9 | 12 | function ao_partner_tabs_preinit() { |
@@ -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 |
@@ -2,7 +2,10 @@ |
||
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' ) ) { |
|
6 | + exit; |
|
7 | +} |
|
8 | +// Exit if accessed directly |
|
6 | 9 | |
7 | 10 | function autoptimize_flush_pagecache() { |
8 | 11 | if(function_exists('wp_cache_clear_cache')) { |