forked from BoldGrid/w3-total-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeatureShowcase_Plugin_Admin.php
493 lines (463 loc) · 24.2 KB
/
FeatureShowcase_Plugin_Admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
<?php
/**
* File: FeatureShowcase_Plugin_Admin.php
*
* @since 2.1.0
*
* @package W3TC
*/
namespace W3TC;
/**
* Class: FeatureShowcase_Plugin_Admin
*
* @since 2.1.0
*/
class FeatureShowcase_Plugin_Admin {
/**
* Current page.
*
* @since 2.1.0
* @access private
*
* @var string
*/
private $_page = 'w3tc_feature_showcase'; // phpcs:ignore PSR2.Classes.PropertyDeclaration.Underscore
/**
* Location of any wp_redirect.
*
* @since 2.2.0
* @access private
* @static
*
* @var string
*/
private static $wp_redirect_location;
/**
* Constructor.
*
* @since 2.1.0
*
* @see Util_Request::get_string()
* @see self::enqueue_styles()
* @see self::set_config()
*/
public function __construct() {
add_action(
'admin_enqueue_scripts',
array(
$this,
'enqueue_styles',
)
);
// Check if being redirected.
add_filter(
'wp_redirect',
function( $location ) {
FeatureShowcase_Plugin_Admin::$wp_redirect_location = $location;
return $location;
}
);
}
/**
* Run.
*
* Run by Root_Loader.
*
* @since 2.1.0
*/
public function run() {
}
/**
* Render the page.
*
* @since 2.1.0
*
* @see Dispatcher::config()
* @see self::get_cards()
*/
public function load() {
$config = Dispatcher::config();
$cards = self::get_cards();
require W3TC_DIR . '/FeatureShowcase_Plugin_Admin_View.php';
// Mark unseen new features as seen, if not redirecting to the Setup Guide wizard.
if ( ! self::$wp_redirect_location ) {
$this->mark_seen();
}
}
/**
* Enqueue styles.
*
* @since 2.1.0
*/
public function enqueue_styles() {
$page = Util_Request::get_string( 'page' );
wp_enqueue_style(
'w3tc_feature_counter',
esc_url( plugin_dir_url( __FILE__ ) . 'pub/css/feature-counter.css' ),
array(),
W3TC_VERSION
);
if ( 'w3tc_feature_showcase' === $page ) {
wp_enqueue_style(
'w3tc_feature_showcase',
esc_url( plugin_dir_url( __FILE__ ) . 'pub/css/feature-showcase.css' ),
array(),
W3TC_VERSION
);
}
}
/**
* Mark all new features as seen.
*
* @since 2.1.0
*
* @global $current_user WordPress current user.
*
* @see self::get_cards()
*/
public function mark_seen() {
global $current_user;
$features_seen = (array) get_user_meta( $current_user->ID, 'w3tc_features_seen', true );
$cards = self::get_cards();
$updated = false;
foreach ( $cards as $id => $card ) {
if ( ! empty( $card['is_new'] ) && ! in_array( $id, $features_seen, true ) ) {
$features_seen[] = $id;
$updated = true;
}
}
if ( $updated ) {
sort( $features_seen );
$features_seen = array_unique( array_filter( $features_seen ) );
update_user_meta( $current_user->ID, 'w3tc_features_seen', $features_seen );
}
}
/**
* Get the new feature unseen count.
*
* @since 2.1.0
*
* @static
*
* @global $current_user WordPress current user.
*
* @see self::get_cards()
*
* @return int
*/
public static function get_unseen_count() {
$config = Dispatcher::config();
$force_master_config = $config->get_boolean( 'common.force_master' );
if ( is_multisite() && $force_master_config && ! is_super_admin() ) {
return 0;
}
global $current_user;
$unseen_count = 0;
$features_seen = (array) get_user_meta( $current_user->ID, 'w3tc_features_seen', true );
$cards = self::get_cards();
// Iterate through the new features and check if already seen.
foreach ( $cards as $id => $card ) {
if ( ! empty( $card['is_new'] ) && ! in_array( $id, $features_seen, true ) ) {
$unseen_count++;
}
}
return $unseen_count;
}
/**
* Get the feature cards.
*
* @since 2.1.0
*
* @access private
* @static
*
* @global $wp_version WordPress core version.
*
* @return array
*/
private static function get_cards() {
$c = Dispatcher::config();
$extensions = $c->get_array( 'extensions.active' );
$is_imageservice_active = isset( $extensions['imageservice'] );
$imageservice_button_text = $is_imageservice_active ?
( is_network_admin() ? __( 'Available in sites', 'w3-total-cache' ) : __( 'Settings', 'w3-total-cache' ) ) :
( is_network_admin() || ! is_multisite() ? __( 'Activate', 'w3-total-cache' ) : '' );
$imageservice_button_link = $is_imageservice_active ?
( is_network_admin() ? 'network/sites.php' : 'upload.php?page=w3tc_extension_page_imageservice' ) :
( is_network_admin() || ! is_multisite() ? 'admin.php?page=w3tc_extensions&action=activate&extension=imageservice' : '' );
global $wp_version;
$imageservice_description = __(
'Adds the ability to convert images into the modern WebP format for better performance using our remote API service.',
'w3-total-cache'
);
if ( version_compare( $wp_version, '5.8', '<' ) ) {
$imageservice_description .= sprintf(
// translators: 1: HTML p open tag, 2: WordPress version string, 3: HTML anchor open tag, 4: HTML anchor close tag, 5: HTML p close tag.
__(
'%1$sThis feature works best in WordPress version 5.8 and higher. You are running WordPress version %2$s. Please %3$supdate now%4$s to benefit from this feature.%5$s',
'w3-total-cache'
),
'<p>',
$wp_version,
'<a href="' . esc_url( admin_url( 'update-core.php' ) ) . '">',
'</a>',
'</p>'
);
}
return array(
'pagespeed' => array(
'title' => esc_html__( 'Google Page Speed', 'w3-total-cache' ),
'icon' => 'dashicons-analytics',
'text' => esc_html__( "Adds the ability to analyze the website's homepage and provide a detailed breakdown of performance metrics including potential issues and proposed solutions.", 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_pagespeed' ) ) . '\'">' .
__( 'Launch', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/google-pagespeed-tool/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=pagespeed-tool' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => true,
),
'lazyload_gmaps' => array(
'title' => esc_html__( 'Lazy Load Google Maps', 'w3-total-cache' ),
'icon' => 'dashicons-admin-site',
'text' => esc_html__( 'Defer loading offscreen Google Maps, making pages load faster.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_userexperience' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/lazy-load-google-maps/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=pro_lazyload_googlemaps' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => true,
'is_new' => false,
),
'cdn_fsd' => array(
'title' => esc_html__( 'Full Site Delivery via CDN', 'w3-total-cache' ),
'icon' => 'dashicons-networking',
'text' => esc_html__( 'Provide the best user experience possible by enhancing by hosting HTML pages and RSS feeds with (supported) CDN\'s high speed global networks.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#cdn' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/cdn-full-site-delivery/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=pro_cdn_fsd' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => true,
'is_new' => false,
),
'render_blocking_css' => array(
'title' => esc_html__( 'Eliminate Render Blocking CSS', 'w3-total-cache' ),
'icon' => 'dashicons-table-row-delete',
'text' => esc_html__( 'Render blocking CSS delays a webpage from being visible in a timely manner. Eliminate this easily with the click of a button in W3 Total Cache Pro.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_minify#css' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/how-to-use-manual-minify-for-css-and-js/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=pro_minify_CSS' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => true,
'is_new' => false,
),
'extension_framework' => array(
'title' => esc_html__( 'Extension Framework', 'w3-total-cache' ),
'icon' => 'dashicons-insert',
'text' => esc_html__( 'Improve the performance of your Genesis, WPML powered site, and much more. StudioPress\' Genesis Framework is up to 60% faster with W3TC Pro.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_extensions' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/extension-framework-pro/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=pro_extensions' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => true,
'is_new' => false,
),
'fragment_cache' => array(
'title' => esc_html__( 'Fragment Cache', 'w3-total-cache' ),
'icon' => 'dashicons-chart-pie',
'text' => esc_html__( 'Unlocking the fragment caching module delivers enhanced performance for plugins and themes that use the WordPress Transient API.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#fragmentcache' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/choosing-a-fragment-caching-method-for-w3-total-cache/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=pro_fragment_cache' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => true,
'is_new' => false,
),
'rest_api_cache' => array(
'title' => esc_html__( 'Rest API Caching', 'w3-total-cache' ),
'icon' => 'dashicons-embed-generic',
'text' => esc_html__( 'Save server resources or add scale and performance by caching the WordPress Rest API with W3TC Pro.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_pgcache#rest' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/achieve-ultimate-wordpress-performance-with-w3-total-cache-pro/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=pro_rest_api_caching' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => true,
'is_new' => false,
),
'caching_stats' => array(
'title' => esc_html__( 'Caching Statistics', 'w3-total-cache' ),
'icon' => 'dashicons-chart-line',
'text' => esc_html__( 'Analytics for your WordPress and Server cache that allow you to track the size, time and hit/miss ratio of each type of cache, giving you the information needed to gain maximum performance.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_stats' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/configuring-w3-total-cache-statistics-to-give-detailed-information-about-your-cache/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=pro_stats' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => true,
'is_new' => false,
),
'purge_logs' => array(
'title' => esc_html__( 'Purge Logs', 'w3-total-cache' ),
'icon' => 'dashicons-search',
'text' => esc_html__( 'Purge Logs provide information on when your cache has been purged and what triggered it. If you are troubleshooting an issue with your cache being cleared, Purge Logs can tell you why.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#debug' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/purge-cache-log/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=pro_purge_logs' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => true,
'is_new' => false,
),
'setup_guide' => array(
'title' => esc_html__( 'Setup Guide Wizard', 'w3-total-cache' ),
'icon' => 'dashicons-superhero',
'text' => esc_html__( 'The Setup Guide wizard quickly walks you through configuring W3 Total Cache.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_setup_guide' ) ) . '\'">' .
__( 'Launch', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/setup-guide-wizard/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=setup_guide' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'imageservice' => array(
'title' => esc_html__( 'Image Service', 'w3-total-cache' ),
'icon' => 'dashicons-embed-photo',
'text' => esc_html( $imageservice_description ),
'button' => empty( $imageservice_button_text ) ? '' :
( '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( $imageservice_button_link ) ) . '\'">' .
esc_html( $imageservice_button_text ) . '</button>' ),
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/image-service/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=imageservice' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'page_cache' => array(
'title' => esc_html__( 'Page Cache', 'w3-total-cache' ),
'icon' => 'dashicons-format-aside',
'text' => esc_html__( 'Page caching decreases the website response time, making pages load faster.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#page_cache' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/configuring-page-caching-in-w3-total-cache-for-shared-hosting/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=page_cache' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'minify' => array(
'title' => esc_html__( 'Minify', 'w3-total-cache' ),
'icon' => 'dashicons-media-text',
'text' => esc_html__( 'Reduce load time by decreasing the size and number of CSS and JS files.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#minify' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/choosing-a-minification-method-for-w3-total-cache/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=minify' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'lazyload' => array(
'title' => esc_html__( 'Lazy Load Images', 'w3-total-cache' ),
'icon' => 'dashicons-format-image',
'text' => esc_html__( 'Defer loading offscreen images, making pages load faster.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#userexperience' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/configuring-lazy-loading-for-your-wordpress-website-with-w3-total-cache/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=lazyload' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'cdn' => array(
'title' => esc_html__( 'Content Delivery Network (CDN)', 'w3-total-cache' ),
'icon' => 'dashicons-format-gallery',
'text' => esc_html__( 'Host static files with a CDN to reduce page load time.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#cdn' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/configuring-w3-total-cache-with-stackpath-for-cdn-objects/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=cdn' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'opcode_cache' => array(
'title' => esc_html__( 'Opcode Cache', 'w3-total-cache' ),
'icon' => 'dashicons-performance',
'text' => esc_html__( 'Improves PHP performance by storing precompiled script bytecode in shared memory.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#system_opcache' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/choosing-an-opcode-caching-method-with-w3-total-cache/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=opcode_cache' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'db_cache' => array(
'title' => esc_html__( 'Database Cache', 'w3-total-cache' ),
'icon' => 'dashicons-database-view',
'text' => esc_html__( 'Persistently store data to reduce post, page and feed creation time.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#database_cache' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/choosing-a-database-caching-method-in-w3-total-cache/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=database_cache' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'object_cache' => array(
'title' => esc_html__( 'Object Cache', 'w3-total-cache' ),
'icon' => 'dashicons-archive',
'text' => esc_html__( 'Persistently store objects to reduce execution time for common operations.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#object_cache' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/configuring-object-caching-methods-in-w3-total-cache/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=object_cache' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'browser_cache' => array(
'title' => esc_html__( 'Browser Cache', 'w3-total-cache' ),
'icon' => 'dashicons-welcome-widgets-menus',
'text' => esc_html__( 'Reduce server load and decrease response time by using the cache available in site visitor\'s web browser.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_general#browser_cache' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/configuring-browser-caching-in-w3-total-cache/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=browser_cache' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'extensions' => array(
'title' => esc_html__( 'Extensions', 'w3-total-cache' ),
'icon' => 'dashicons-editor-kitchensink',
'text' => esc_html__( 'Additional features to extend the functionality of W3 Total Cache, such as Accelerated Mobile Pages (AMP) for Minify and support for New Relic.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_extensions' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/extension-framework/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=extensions' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
'cache_groups' => array(
'title' => esc_html__( 'Cache Groups', 'w3-total-cache' ),
'icon' => 'dashicons-image-filter',
'text' => esc_html__( 'Manage cache groups for user agents, referrers, and cookies.', 'w3-total-cache' ),
'button' => '<button class="button" onclick="window.location=\'' .
esc_url( Util_Ui::admin_url( 'admin.php?page=w3tc_cachegroups' ) ) . '\'">' .
__( 'Settings', 'w3-total-cache' ) . '</button>',
'link' => '<a target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/cache-groups/?utm_source=w3tc&utm_medium=feature_showcase&utm_campaign=cache_groups' ) .
'">' . __( 'More info', 'w3-total-cache' ) . '<span class="dashicons dashicons-external"></span></a>',
'is_premium' => false,
'is_new' => false,
),
);
}
}