PluginProbe ʕ •ᴥ•ʔ
Backup Migration / 2.1.2
Backup Migration v2.1.2
2.1.6 2.1.5.2 trunk 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.6.1 1.4.7 1.4.8 1.4.9 1.4.9.1 2.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.5.1
backup-backup / includes / dashboard / modals / reset-confirm-modal.php
backup-backup / includes / dashboard / modals Last commit date
AA-Modal-Template.php 4 months ago after-logs-sent.php 4 months ago backup-progress-modal.php 4 months ago backup-success-modal.php 4 months ago bb-disconnect-modal.php 4 months ago bb-warning-notice.php 4 months ago before-update-confirm-modal.php 4 months ago bfs-modal.php 4 months ago delete-confirm-modal.php 4 months ago error-modal.php 4 months ago freeze-loading.php 4 months ago logs-modal.php 4 months ago logs-sharing-ask.php 4 months ago pre-restore-modal.php 4 months ago prenotice-modal.php 4 months ago reset-confirm-modal.php 4 months ago restore-parts-modal.php 4 months ago restore-progress-modal.php 4 months ago restore-success-modal.php 4 months ago staging-delete-confirm-modal.php 4 months ago staging-error-modal.php 4 months ago staging-prenotice-modal.php 4 months ago staging-progress-modal.php 4 months ago staging-rename-modal.php 4 months ago staging-success-modal.php 4 months ago supportive-restore-success-cont.php 4 months ago supportive-restore-success-modal.php 4 months ago upload-exist-file-modal.php 4 months ago upload-invalid-manifest-modal.php 4 months ago upload-success-modal.php 4 months ago upload-wrong-file-modal.php 4 months ago
reset-confirm-modal.php
41 lines
1 <?php
2
3 // Namespace
4 namespace BMI\Plugin\Dashboard;
5
6 // Exit on direct access
7 if (!defined('ABSPATH')) exit;
8
9 ?>
10
11 <div class="bmi-modal" id="reset-confirm-modal">
12
13 <div class="bmi-modal-wrapper" style="min-height: 0px; max-width: 564px; max-width: min(564px, 80vw);">
14 <div class="bmi-modal-content">
15
16 <div class="flex flexcenter">
17 <div class="mr20">
18 <img class="inline" src="<?php echo esc_url( $this->get_asset('images', 'warning-red.png') ); ?>" alt="error">
19 </div>
20 <div class="semibold f18 center lh30">
21 <?php esc_html_e("Do you really want to reset the configuration?", 'backup-backup'); ?><br>
22 <?php esc_html_e("This action cannot be undone!", 'backup-backup'); ?>
23 </div>
24 </div>
25
26 <div class="center mtl">
27 <div class="cf inline">
28 <div class="left inline mr50">
29 <a href="#" class="btn bold mm red" id="configuration-reset-absolute"><?php esc_html_e("Yes, reset", 'backup-backup'); ?></a>
30 </div>
31 <div class="left inline">
32 <a href="#" class="btn bold mm grey nodec bmi-modal-closer"><?php esc_html_e("No, cancel", 'backup-backup'); ?></a>
33 </div>
34 </div>
35 </div>
36
37 </div>
38 </div>
39
40 </div>
41