forked from BoldGrid/w3-total-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeneric_AdminNotes.php
485 lines (461 loc) · 13.9 KB
/
Generic_AdminNotes.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
<?php
/**
* FIle: Generic_AdminNotes.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class: Generic_AdminNotes
*/
class Generic_AdminNotes {
/**
* W3TC admin notices.
*
* @param array $notes Notices.
* @return string
*/
public function w3tc_notes( $notes ) {
$c = Dispatcher::config();
$state = Dispatcher::config_state();
$state_master = Dispatcher::config_state_master();
$state_note = Dispatcher::config_state_note();
/**
* Check wp-content permissions
*/
if ( ! W3TC_WIN && ! $state_master->get_boolean( 'common.hide_note_wp_content_permissions' ) ) {
$wp_content_mode = Util_File::get_file_permissions( WP_CONTENT_DIR );
if ( $wp_content_mode > 755 ) {
$notes['generic_wp_content_writeable'] = wp_kses(
sprintf(
// translators: 1: HTML strong tag for current WP directory, 2: HTML strong tag for CHMOD instruction for current WP directory,
// translators: 3: conversion of file permissions from base 10 to 8, 4: HTML input button for hiding message.
__(
'%1$s is write-able. When finished installing the plugin, change the permissions back to the default: %2$s. Permissions are currently %3$s. %4$s',
'w3-total-cache'
),
'<strong>' . WP_CONTENT_DIR . '</strong>',
'<strong>chmod 755 ' . WP_CONTENT_DIR . '</strong>',
$wp_content_mode,
Util_Ui::button_hide_note2(
array(
'w3tc_default_config_state_master' => 'y',
'key' => 'common.hide_note_wp_content_permissions',
'value' => 'true',
)
)
),
array(
'strong' => array(),
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
)
);
}
}
/**
* Check Zlib extension.
*/
if ( ! $state_master->get_boolean( 'common.hide_note_no_zlib' ) && ! function_exists( 'gzencode' ) ) {
$notes['no_zlib'] = wp_kses(
sprintf(
// translators: 1: opening HTML strong tag, 2: closing HTML strong tag, 3: HTML input button for hiding message.
__(
'Unfortunately the PHP installation is incomplete, the %1$szlib module is missing%2$s. This is a core PHP module. Notify the server administrator. %3$s',
'w3-total-cache'
),
'<strong>',
'</strong>',
Util_Ui::button_hide_note2(
array(
'w3tc_default_config_state_master' => 'y',
'key' => 'common.hide_note_no_zlib',
'value' => 'true',
)
)
),
array(
'strong' => array(),
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
)
);
}
/**
* Check if Zlib output compression is enabled
*/
if ( ! $state_master->get_boolean( 'common.hide_note_zlib_output_compression' ) && Util_Environment::is_zlib_enabled() ) {
$notes['zlib_output_compression'] = wp_kses(
sprintf(
// translators: 1: opening HTML strong tag, 2: clsoing HTML strong tag, 3: HTML line break, 4: HTML input button to hide message.
__(
'Either the PHP configuration, web server configuration or a script in the WordPress installation has %1$szlib.output_compression%2$s enabled.%3$sPlease locate and disable this setting to ensure proper HTTP compression behavior. %4$s',
'w3-total-cache'
),
'<strong>',
'</strong>',
'<br />',
Util_Ui::button_hide_note2(
array(
'w3tc_default_config_state_master' => 'y',
'key' => 'common.hide_note_zlib_output_compression',
'value' => 'true',
)
)
),
array(
'strong' => array(),
'br' => array(),
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
)
);
}
if ( $state_master->get_boolean( 'common.show_note.nginx_restart_required' ) ) {
$cf = Dispatcher::component( 'CacheFlush' );
$notes['nginx_restart_required'] = wp_kses(
sprintf(
// translators: 1: HTML input button to hide message.
__(
'nginx.conf rules have been updated. Please restart nginx server to provide a consistent user experience. %1$s',
'w3-total-cache'
),
Util_Ui::button_hide_note2(
array(
'w3tc_default_config_state_master' => 'y',
'key' => 'common.show_note.nginx_restart_required',
'value' => 'false',
)
)
),
array(
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
)
);
}
/**
* Preview mode
*/
if ( $c->is_preview() ) {
$notes['preview_mode'] = wp_kses(
sprintf(
// translators: 1: HTML input button to apply changes, 2: HTML input button to disable preview mode,
// translators: 3: opening HTML p tag, 4: HTML inptu button to preview changes, 5: closing HTML p tag.
__(
'Preview mode is active: Changed settings will not take effect until preview mode is %1$s or %2$s. %3$sTo preview any changed settings (without deploying): %4$s',
'w3-total-cache'
),
Util_Ui::button_link(
__( 'deploy', 'w3-total-cache' ),
Util_Ui::url( array( 'w3tc_config_preview_deploy' => 'y' ) )
),
Util_Ui::button_link(
__( 'disable', 'w3-total-cache' ),
Util_Ui::url( array( 'w3tc_config_preview_disable' => 'y' ) )
),
'<p class="description">',
Util_Ui::preview_link(),
'</p>'
),
array(
'p' => array(
'class' => array(),
),
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
)
);
}
/**
* Show notification after plugin activate/deactivate.
*/
if ( $state_note->get( 'common.show_note.plugins_updated' ) && ! is_network_admin() /* flushing under network admin do nothing */ ) {
$texts = array();
if ( $c->get_boolean( 'pgcache.enabled' ) ) {
$texts[] = Util_Ui::button_link(
__( 'empty the page cache', 'w3-total-cache' ),
Util_Ui::url( array( 'w3tc_flush_posts' => 'y' ) )
);
}
if ( $c->get_boolean( 'minify.enabled' ) ) {
$texts[] = wp_kses(
sprintf(
// translators: 1: HTML input button to view minify settings.
__(
'check the %1$s to maintain the desired user experience',
'w3-total-cache'
),
Util_Ui::button_link(
__( 'minify settings', 'w3-total-cache' ),
Util_Ui::url(
array(
'w3tc_default_config_state_note' => 'y',
'key' => 'common.show_note.plugins_updated',
'value' => 'false',
'page' => 'w3tc_minify',
'redirect' => esc_url( admin_url( 'admin.php?page=w3tc_minify' ) ),
)
)
)
),
array(
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
)
);
}
if ( count( $texts ) ) {
$notes['some_plugins_activated'] = wp_kses(
sprintf(
// translators: 1: HTML input button to clear the cache, 2: HTML input button to hide message.
__(
'One or more plugins have been activated or deactivated, please %1$s. %2$s',
'w3-total-cache'
),
implode( __( ' and ', 'w3-total-cache' ), $texts ),
Util_Ui::button_hide_note2(
array(
'w3tc_default_config_state_note' => 'y',
'key' => 'common.show_note.plugins_updated',
'value' => 'false',
)
)
),
array(
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
'a' => array(
'href' => array(),
'target' => array(),
),
)
);
}
}
/**
* Show notification when flush_statics needed.
*/
if ( $c->get_boolean( 'browsercache.enabled' ) && $state_note->get( 'common.show_note.flush_statics_needed' ) && ! is_network_admin() /* flushing under network admin do nothing */ && ! $c->is_preview() ) {
$notes['flush_statics_needed'] = wp_kses(
sprintf(
// translators: 1: HTML input button to empty static files cache, 2: HTML input button to hide message.
__(
'The setting change(s) made either invalidate the cached data or modify the behavior of the site. %1$s now to provide a consistent user experience. %2$s',
'w3-total-cache'
),
Util_Ui::button_link(
'Empty the static files cache',
Util_Ui::url( array( 'w3tc_flush_statics' => 'y' ) )
),
Util_Ui::button_hide_note2(
array(
'w3tc_default_config_state_note' => 'y',
'key' => 'common.show_note.flush_statics_needed',
'value' => 'false',
)
)
),
array(
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
)
);
}
/**
* Show notification when flush_posts needed.
*/
if ( $state_note->get( 'common.show_note.flush_posts_needed' ) && ! is_network_admin() /* flushing under network admin do nothing */ && ! $c->is_preview() && ! isset( $notes['flush_statics_needed'] ) ) {
$cf = Dispatcher::component( 'CacheFlush' );
if ( $cf->flushable_posts() ) {
$notes['flush_posts_needed'] = wp_kses(
sprintf(
// translators: 1: HTML input button to empty page cache, 2: HTML input button to hide message.
__(
'The setting change(s) made either invalidate the cached data or modify the behavior of the site. %1$s now to provide a consistent user experience. %2$s',
'w3-total-cache'
),
Util_Ui::button_link(
'Empty the page cache',
Util_Ui::url( array( 'w3tc_flush_posts' => 'y' ) )
),
Util_Ui::button_hide_note2(
array(
'w3tc_default_config_state_note' => 'y',
'key' => 'common.show_note.flush_posts_needed',
'value' => 'false',
)
)
),
array(
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
)
);
}
}
$is_debug = $c->get_boolean( 'cluster.messagebus.debug' ) ||
$c->get_boolean( 'dbcache.debug' ) ||
$c->get_boolean( 'objectcache.debug' ) ||
$c->get_boolean( 'pgcache.debug' ) ||
$c->get_boolean( 'minify.debug' ) ||
$c->get_boolean( 'cdn.debug' ) ||
$c->get_boolean( 'cdnfsd.debug' ) ||
$c->get_boolean( 'varnish.debug' );
if ( $is_debug && ! $state_master->get_boolean( 'common.hide_note_debug_enabled' ) ) {
$notes['debug_enabled'] = wp_kses(
sprintf(
// translators: 1: HTML input button to hide message.
__(
'You\'re running debug mode, it\'s using Resources and not recommend to run continuously. %1$s',
'w3-total-cache'
),
Util_Ui::button_hide_note2(
array(
'w3tc_default_config_state_master' => 'y',
'key' => 'common.hide_note_debug_enabled',
'value' => 'true',
)
)
),
array(
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
)
);
}
return $notes;
}
/**
* W3TC error notices.
*
* @param array $errors Errors.
* @return array
*/
public function w3tc_errors( $errors ) {
$state = Dispatcher::config_state();
$c = Dispatcher::config();
/**
* Check permalinks.
*/
if (
! $state->get_boolean( 'common.hide_note_no_permalink_rules' ) &&
(
( $c->get_boolean( 'pgcache.enabled' ) && 'file_generic' === $c->get_string( 'pgcache.engine' ) ) ||
( $c->get_boolean( 'browsercache.enabled' ) && $c->get_boolean( 'browsercache.no404wp' ) )
) &&
! Util_Rule::is_permalink_rules()
) {
$errors['generic_no_permalinks'] = wp_kses(
sprintf(
// translators: 1: HTML a tag to WordPress codex for using htaccess for permalinks, 2: HTML input button to hide message.
__(
'The required directives for fancy permalinks could not be detected, please confirm they are available: %1$s %2$s',
'w3-total-cache'
),
'<a href="http://codex.wordpress.org/Using_Permalinks#Creating_and_editing_.28.htaccess.29">' .
__( 'Creating and editing', 'w3-total-cache' ) . '</a>',
Util_Ui::button_hide_note2(
array(
'w3tc_default_config_state_master' => 'y',
'key' => 'common.hide_note_no_permalink_rules',
'value' => 'true',
)
)
),
array(
'a' => array(
'href' => array(),
),
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
)
);
}
/**
* Check memcached.
*/
if ( isset( $errors['memcache_not_responding.details'] ) ) {
$memcache_errors = '';
foreach ( $errors['memcache_not_responding.details'] as $memcaches_error ) {
$memcache_errors .= '<li>' . $memcaches_error . '</li>';
}
$memcache_error = wp_kses(
sprintf(
// translators: 1: opening HTML p tag, 2: closing HTML p tag followed by opening HTML ul tag followed by memcache errors within HTML li tags,
// translators: 3: closing HTML p tag.
__(
'%1$sThe following memcached servers are not responding or not running:%2$sThis message will automatically disappear once the issue is resolved.%3$s',
'w3-total-cache'
),
'<p>',
'</p><ul>' . $memcache_errors . '</ul><p>',
'</p>'
),
array(
'p' => array(),
'ul' => array(),
'li' => array(),
)
);
$errors['memcache_not_responding'] = $memcache_error;
unset( $errors['memcache_not_responding.details'] );
}
return $errors;
}
}