PluginProbe
Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed & Web Vitals Score / 2.0.3
Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed & Web Vitals Score v2.0.3
trunk 1.0 1.0.1 1.1 1.1.1 1.1.2 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1 2.1.1 2.1.2 2.2 2.2.1 All 69 releases
powered-cache / includes / admin / partials / modals.php

modals.php in Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed & Web Vitals Score 2.0.3, at includes/admin/partials/modals.php

59 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Settings modal(s)
4 *
5 * @package PoweredCache\Admin
6 */
7
8 // phpcs:disable WordPress.WhiteSpace.PrecisionAlignment.Found
9
10 ?>
11 <div class="sui-modal sui-modal-lg">
12 <?php wp_nonce_field( 'powered_cache_run_diagnostic', 'powered_cache_run_diagnostic' ); ?>
13
14 <div role="dialog"
15 id="pcmodal--powered-cache-diagnostic"
16 class="sui-modal-content"
17 aria-live="polite"
18 aria-modal="true"
19 aria-labelledby="pcmodal--powered-cache-diagnostic-title"
20 aria-describedby="pcmodal--powered-cache-diagnostic-desc"
21 >
22
23 <div class="sui-box">
24
25 <button class="sui-screen-reader-text" data-modal-close=""><?php esc_html_e( 'Close', 'powered-cache' ); ?></button>
26
27 <div class="sui-box-header">
28
29 <h3 id="pcmodal--powered-cache-diagnostic-title" class="sui-box-title"><?php esc_html_e( 'Diagnostic', 'powered-cache' ); ?></h3>
30
31 <button class="sui-button-icon sui-button-float--right" data-modal-close="">
32 <span class="sui-icon-close sui-md" aria-hidden="true"></span>
33 <span class="sui-screen-reader-text"><?php esc_html_e( 'Close this modal', 'powered-cache' ); ?></span>
34 </button>
35
36 </div>
37
38 <div id="pcmodal--powered-cache-diagnostic-message" class="sui-box-body">
39
40 <p id="pcmodal--powered-cache-diagnostic-desc">
41 <?php esc_html_e( 'Welcome to Powered Cache Diagnostic. Running the diagnostic test helps to identify potential issues with the caching. This is only a test. It might take additinal steps to fixing the issues.', 'powered-cache' ); ?>
42 </p>
43
44 <div class="sui-border-frame diagnostic-modal-performance">
45 <ul id="powered-cache-diagnostic-items">
46 </ul>
47
48 <button id="pcmodal--powered-cache-diagnostic-test" class="sui-button sui-button-blue" aria-controls="pcmodal--powered-cache-diagnostic-progress">
49 <?php esc_html_e( 'Run Diagnostic Test', 'powered-cache' ); ?>
50 </button>
51 </div>
52
53 </div>
54 </div>
55
56 </div>
57
58 </div>
59