PluginProbe ʕ •ᴥ•ʔ
Smush – Image Optimization, Compression, Lazy Load, WebP & CDN / 3.9.8
Smush – Image Optimization, Compression, Lazy Load, WebP & CDN v3.9.8
4.1.0 4.0.3 4.0.2 2.8.1 2.9.1 3.0.0 3.0.1 3.0.2 3.1.1 3.10.1 3.10.2 3.10.3 3.11.1 3.12.3 3.12.4 3.12.5 3.12.6 3.13.0 3.13.1 3.13.2 3.14.0 3.14.1 3.14.2 3.15.0 3.15.1 3.15.2 3.15.3 3.15.4 3.15.5 3.16.2 3.16.4 3.16.5 3.16.6 3.17.0 3.17.1 3.18.0 3.18.1 3.2.0.1 3.2.1 3.2.2.1 3.2.4 3.20.0 3.21.1 3.22.1 3.22.3 3.23.0 3.23.1 3.23.2 3.23.3 3.23.4 3.24.0 3.24.0-beta.2 3.3.0 3.3.1 3.3.2 3.4.1 3.4.2 3.6.1 3.6.3 3.7.0 3.7.1 3.7.2 3.7.3 3.8.2 3.8.3 3.8.4 3.8.5 3.8.7 3.8.8 3.9.0 3.9.1 3.9.11 3.9.2 3.9.4 3.9.5 3.9.8 3.9.9 trunk 1.0.0 1.0.1 1.0.2 1.1 1.1.1 1.1.2 1.1.3 1.2 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.1 1.3.2 1.3.3 1.3.4 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.5.1 1.6.5.2 1.6.5.3 1.6.5.4 1.7 1.7.1 1.7.1.1 2.0 2.0.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.6.2 2.0.6.3 2.0.6.5 2.0.7 2.0.7.1 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2 2.2.1 2.2.2 2.3 2.3.1 2.4 2.4.2 2.4.3 2.4.4 2.4.5 2.5.2 2.5.3 2.6.1 2.6.2 2.6.3 2.7 2.7.1 2.7.4 2.7.4.1 2.7.5 2.7.6 2.7.8 2.7.8.1 2.7.9.1 2.8.0 2.8.0.1
wp-smushit / app / modals / reset-settings.php
wp-smushit / app / modals Last commit date
checking-files.php 6 years ago directory-list.php 4 years ago onboarding.php 5 years ago progress-dialog.php 4 years ago reset-settings.php 4 years ago restore-images.php 6 years ago updated.php 4 years ago webp-delete-all.php 5 years ago
reset-settings.php
47 lines
1 <?php
2 /**
3 * Reset settings modal.
4 *
5 * @since 3.2.0
6 * @package WP_Smush
7 */
8
9 if ( ! defined( 'WPINC' ) ) {
10 die;
11 }
12
13 ?>
14
15 <div class="sui-modal sui-modal-sm">
16 <div
17 role="dialog"
18 id="reset-settings-dialog"
19 class="sui-modal-content reset-settings-dialog"
20 aria-modal="true"
21 aria-labelledby="reset-settings-dialog-title"
22 aria-describedby="reset-settings-dialog-description"
23 >
24 <div class="sui-box">
25 <div class="sui-box-header sui-flatten sui-content-center sui-spacing-top--40">
26 <h3 class="sui-box-title sui-lg" id="reset-settings-dialog-title">
27 <?php esc_html_e( 'Reset Settings', 'wp-smushit' ); ?>
28 </h3>
29
30 <p class="sui-description" id="reset-settings-dialog-description">
31 <?php esc_html_e( 'Are you sure you want to reset Smush’s settings back to the factory defaults?', 'wp-smushit' ); ?>
32 </p>
33 </div>
34 <div class="sui-box-body sui-content-center">
35 <input type="hidden" id="wp_smush_reset" name="_wpnonce" value="<?php echo esc_attr( wp_create_nonce( 'wp_smush_reset' ) ); ?>">
36 <a class="sui-button sui-button-ghost" data-modal-close="">
37 <?php esc_html_e( 'Cancel', 'wp-smushit' ); ?>
38 </a>
39 <a class="sui-button sui-button-ghost sui-button-red sui-button-icon-left" onclick="WP_Smush.helpers.resetSettings()" id="reset-setting-confirm">
40 <i class="sui-icon-trash" aria-hidden="true"></i>
41 <?php esc_html_e( 'Reset settings', 'wp-smushit' ); ?>
42 </a>
43 </div>
44 </div>
45 </div>
46 </div>
47