Skip to content

Commit dbb1733

Browse files
authored
Release 2.8.0 2 (#997)
* Fix Pro support content display * Fix `@since` * Fix undefined var * Update translations POT file
1 parent afa2a48 commit dbb1733

33 files changed

+117
-117
lines changed

BrowserCache_Environment.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ private function rules_cache_generate_apache( Config $config ): string {
302302
/**
303303
* Filter: w3tc_browsercache_rules_apache_mime
304304
*
305-
* @since X.X.X
305+
* @since 2.8.0
306306
*
307307
* @param string $rules_mime Apache rules for MIME types.
308308
* @return string
@@ -354,7 +354,7 @@ private function rules_cache_generate_apache( Config $config ): string {
354354
/**
355355
* Filter: w3tc_browsercache_rules_apache_brotli
356356
*
357-
* @since X.X.X
357+
* @since 2.8.0
358358
*
359359
* @param string $rules_brotli Apache rules for mod_brotli.
360360
* @return string
@@ -415,7 +415,7 @@ private function rules_cache_generate_apache( Config $config ): string {
415415
/**
416416
* Filter: w3tc_browsercache_rules_apache_deflate
417417
*
418-
* @since X.X.X
418+
* @since 2.8.0
419419
*
420420
* @param string $rules_deflate Apache rules for mod_deflate.
421421
* @return string
@@ -430,7 +430,7 @@ private function rules_cache_generate_apache( Config $config ): string {
430430
/**
431431
* Filter: w3tc_browsercache_rules_apache_cssjs
432432
*
433-
* @since X.X.X
433+
* @since 2.8.0
434434
*
435435
* @param string $this->_rules_cache_generate_apache_for_type( $config, $mime_types2['cssjs'], 'cssjs' ) Apache rules for CSS/JS MIME types.
436436
* @return string
@@ -440,7 +440,7 @@ private function rules_cache_generate_apache( Config $config ): string {
440440
/**
441441
* Filter: w3tc_browsercache_rules_apache_html
442442
*
443-
* @since X.X.X
443+
* @since 2.8.0
444444
*
445445
* @param string $this->_rules_cache_generate_apache_for_type( $config, $mime_types2['html'], 'html' ) Apache rules for HTML MIME types.
446446
* @return string
@@ -450,7 +450,7 @@ private function rules_cache_generate_apache( Config $config ): string {
450450
/**
451451
* Filter: w3tc_browsercache_rules_apache_other
452452
*
453-
* @since X.X.X
453+
* @since 2.8.0
454454
*
455455
* @param string $this->_rules_cache_generate_apache_for_type( $config, $mime_types2['other'], 'other' ) Apache rules for other MIME types.
456456
* @return string
@@ -659,7 +659,7 @@ private function rules_cache_generate_apache( Config $config ): string {
659659
/**
660660
* Filter: w3tc_browsercache_rules_apache_headers
661661
*
662-
* @since X.X.X
662+
* @since 2.8.0
663663
*
664664
* @param string $rules_mime Apache rules for mod_headers.
665665
* @return string
@@ -674,7 +674,7 @@ private function rules_cache_generate_apache( Config $config ): string {
674674
/**
675675
* Filter: w3tc_browsercache_rules_apache_rewrite
676676
*
677-
* @since X.X.X
677+
* @since 2.8.0
678678
*
679679
* @param string $rules_mime Apache rules for mod_rewrite.
680680
* @return string

ConfigSettingsTabs.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Config_Tab_Settings {
1616
/**
1717
* Get the configuration settings.
1818
*
19-
* @since x.x.x
19+
* @since 2.8.0
2020
*
2121
* @return array The configuration settings.
2222
*/
@@ -28,7 +28,7 @@ public static function get_configs() : array {
2828
/**
2929
* Get the configuration setting.
3030
*
31-
* @since x.x.x
31+
* @since 2.8.0
3232
*
3333
* @param string $key The key of the configuration setting.
3434
* @param array $default The default value of the configuration setting.

ConfigSettingsTabsKeys.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
return array(
1111
'page_cache' => array(
1212
'tabs' => array(
13-
'premium_support' =>'<h3>' . esc_html__( 'Did you know that W3 Total Cache has premium services available, and can set up page cache for you?', 'w3-total-cache' ) . '</h3>
13+
'premium_support' => '<h3>' . esc_html__( 'Did you know that W3 Total Cache has premium services available, and can set up page cache for you?', 'w3-total-cache' ) . '</h3>
1414
<h4>' . esc_html__( 'Our more popular package is the Plugin Configuration package. Not only will we configure page caching for you, we will configure the object cache, database cache, and most other items too.', 'w3-total-cache' ) . '</h4>
1515
<p><span class="dashicons dashicons-yes-alt"></span>' . esc_html__( 'Tailored W3 Total Cache setup, customized for your theme, plugins, and server.', 'w3-total-cache' ) . '</p>
1616
<p><span class="dashicons dashicons-yes-alt"></span>' . esc_html__( 'Expert optimization based on WordPress-specific performance needs (WPO).', 'w3-total-cache' ) . '</p>

DbCache_Environment.php

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
<?php
2-
namespace W3TC;
3-
42
/**
5-
* W3 PgCache plugin - administrative interface
3+
* File: DbCache_Environment.php
4+
*
5+
* @package W3TC
66
*/
77

8+
namespace W3TC;
9+
810
/**
9-
* class DbCache_Environment
11+
* Class: DbCache_Environment
1012
*/
1113
class DbCache_Environment {
1214
/**
@@ -114,7 +116,7 @@ private function unschedule_gc() {
114116
/**
115117
* Remove cron job for pagecache purge.
116118
*
117-
* @since X.X.X
119+
* @since 2.8.0
118120
*
119121
* @return void
120122
*/

DbCache_Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public function cron_schedules( $schedules ) {
143143
/**
144144
* Cron job for processing purging database cache.
145145
*
146-
* @since X.X.X
146+
* @since 2.8.0
147147
*
148148
* @return void
149149
*/

Extension_AlwaysCached_AdminActions.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Controller for AlwaysCached extension admin actions.
66
*
7-
* @since X.X.X
7+
* @since 2.8.0
88
*
99
* @package W3TC
1010
*/
@@ -14,14 +14,14 @@
1414
/**
1515
* AlwaysCached Admin Actions.
1616
*
17-
* @since X.X.X
17+
* @since 2.8.0
1818
*/
1919
class Extension_AlwaysCached_AdminActions {
2020

2121
/**
2222
* Handles regenerate page/post request.
2323
*
24-
* @since X.X.X
24+
* @since 2.8.0
2525
*
2626
* @return void
2727
*/
@@ -66,7 +66,7 @@ public function w3tc_alwayscached_regenerate() {
6666
/**
6767
* Process queue item.
6868
*
69-
* @since X.X.X
69+
* @since 2.8.0
7070
*
7171
* @return void
7272
*/
@@ -85,7 +85,7 @@ public function w3tc_alwayscached_process_item() {
8585
/**
8686
* Process queue.
8787
*
88-
* @since X.X.X
88+
* @since 2.8.0
8989
*
9090
* @return void
9191
*/
@@ -104,7 +104,7 @@ public function w3tc_alwayscached_process() {
104104
/**
105105
* Handles empty queue request.
106106
*
107-
* @since X.X.X
107+
* @since 2.8.0
108108
*
109109
* @return void
110110
*/

Extension_AlwaysCached_Environment.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Controller for AlwaysCached extension environment.
66
*
7-
* @since X.X.X
7+
* @since 2.8.0
88
*
99
* @package W3TC
1010
*/
@@ -14,14 +14,14 @@
1414
/**
1515
* AlwaysCached Admin Environment.
1616
*
17-
* @since X.X.X
17+
* @since 2.8.0
1818
*/
1919
class Extension_AlwaysCached_Environment {
2020

2121
/**
2222
* Fixes environment on admin request.
2323
*
24-
* @since X.X.X
24+
* @since 2.8.0
2525
*
2626
* @return void|null
2727
*/
@@ -36,7 +36,7 @@ public static function fix_on_wpadmin_request() {
3636
/**
3737
* Fixes environment once event occurs.
3838
*
39-
* @since X.X.X
39+
* @since 2.8.0
4040
*
4141
* @param Config $config Config data.
4242
* @param string $event Event key.
@@ -71,7 +71,7 @@ public static function fix_on_event( $config, $event, $old_config = null ) {
7171
/**
7272
* Fixes environment after plugin deactivation.
7373
*
74-
* @since X.X.X
74+
* @since 2.8.0
7575
*
7676
* @throws Util_Environment_Exceptions Exception.
7777
*
@@ -95,7 +95,7 @@ public static function fix_after_deactivation() {
9595
/**
9696
* Sets requirment instructions for AlwaysCached on install page.
9797
*
98-
* @since X.X.X
98+
* @since 2.8.0
9999
*
100100
* @param Config $config Config data.
101101
*

Extension_AlwaysCached_Page.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Controls the AlwaysCached settings page.
66
*
7-
* @since X.X.X
7+
* @since 2.8.0
88
*
99
* @package W3TC
1010
*/
@@ -14,14 +14,14 @@
1414
/**
1515
* AlwaysCached Page.
1616
*
17-
* @since X.X.X
17+
* @since 2.8.0
1818
*/
1919
class Extension_AlwaysCached_Page {
2020

2121
/**
2222
* Prints the admin scripts.
2323
*
24-
* @since X.X.X
24+
* @since 2.8.0
2525
*
2626
* @return void
2727
*/
@@ -54,7 +54,7 @@ public static function admin_print_scripts() {
5454
/**
5555
* Prints the settings page.
5656
*
57-
* @since X.X.X
57+
* @since 2.8.0
5858
*
5959
* @return void
6060
*/
@@ -66,7 +66,7 @@ public static function w3tc_extension_page_alwayscached() {
6666
/**
6767
* Adds AJAX actions.
6868
*
69-
* @since X.X.X
69+
* @since 2.8.0
7070
*
7171
* @return void
7272
*/
@@ -99,7 +99,7 @@ public static function w3tc_ajax() {
9999
/**
100100
* Regenerates queue item.
101101
*
102-
* @since X.X.X
102+
* @since 2.8.0
103103
*
104104
* @return void
105105
*/
@@ -119,7 +119,7 @@ public static function w3tc_ajax_extension_alwayscached_process_queue_item() {
119119
/**
120120
* Prints the queue content via AJAX.
121121
*
122-
* @since X.X.X
122+
* @since 2.8.0
123123
*
124124
* @return void
125125
*/
@@ -131,7 +131,7 @@ public static function w3tc_ajax_extension_alwayscached_queue() {
131131
/**
132132
* Queue filter & pagination.
133133
*
134-
* @since X.X.X
134+
* @since 2.8.0
135135
*
136136
* @return void
137137
*/

Extension_AlwaysCached_Page_Queue_View.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Controller for AlwaysCached queue.
66
*
7-
* @since X.X.X
7+
* @since 2.8.0
88
*
99
* @package W3TC
1010
*/

Extension_AlwaysCached_Page_View.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* JavaScript for the Always Cached settings page.
55
*
6-
* @since X.X.X
6+
* @since 2.8.0
77
*
88
* @global w3tcData Localized data.
99
*/
@@ -144,7 +144,7 @@ jQuery(function() {
144144
'#alwayscached___wp_cron',
145145
function() {
146146
let $enabled = jQuery(this).prop('checked');
147-
147+
148148
jQuery('#alwayscached___wp_cron_time').prop('disabled', ! $enabled);
149149
jQuery('#alwayscached___wp_cron_interval').prop('disabled', ! $enabled);
150150
}
@@ -155,7 +155,7 @@ jQuery(function() {
155155
'#alwayscached___flush_all',
156156
function() {
157157
let $enabled = jQuery(this).prop('checked');
158-
158+
159159
jQuery('#alwayscached___flush_all_home').prop('disabled', ! $enabled);
160160
jQuery('#alwayscached___flush_all_posts_count').prop('disabled', ! $enabled);
161161
jQuery('#alwayscached___flush_all_pages_count').prop('disabled', ! $enabled);

Extension_AlwaysCached_Page_View.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Render the AlwaysCached settings page.
66
*
7-
* @since X.X.X
7+
* @since 2.8.0
88
*
99
* @package W3TC
1010
*/

Extension_AlwaysCached_Page_View_BoxCron.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Render the AlwaysCached settings page - cron box.
66
*
7-
* @since X.X.X
7+
* @since 2.8.0
88
*
99
* @package W3TC
1010
*/

Extension_AlwaysCached_Page_View_BoxFlushAll.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Render the AlwaysCached settings page - flush all box.
66
*
7-
* @since X.X.X
7+
* @since 2.8.0
88
*
99
* @package W3TC
1010
*/

Extension_AlwaysCached_Page_View_BoxQueue.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Render the AlwaysCached settings page - queue box.
66
*
7-
* @since X.X.X
7+
* @since 2.8.0
88
*
99
* @package W3TC
1010
*/

Extension_AlwaysCached_Page_View_Exclusions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Render the AlwaysCached settings page - exclusions.
66
*
7-
* @since X.X.X
7+
* @since 2.8.0
88
*
99
* @package W3TC
1010
*/

0 commit comments

Comments
 (0)