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 / delete-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
delete-confirm-modal.php
76 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="delete-confirm-modal">
12
13 <div class="bmi-modal-wrapper" style="max-width: 380px; max-width: min(380px, 80vw);">
14 <a href="#" class="bmi-modal-close">×</a>
15 <div class="bmi-modal-content">
16
17 <div class="mbl center">
18 <img class="center block inline" src="<?php echo esc_url( $this->get_asset('images', 'trash.png') ); ?>" alt="trash">
19 </div>
20
21 <div class="center f24 bold mbl lh30 text1">
22 <?php esc_html_e("Are you sure you want to", 'backup-backup'); ?><br>
23 <?php esc_html_e("delete this backup?", 'backup-backup'); ?>
24 </div>
25
26 <div class="center f24 bold mbl lh30 text2" style="display: none;">
27 <?php esc_html_e("Are you sure you want to", 'backup-backup'); ?><br>
28 <?php esc_html_e("delete", 'backup-backup'); ?>
29 (<span class="backup-multiple-del-count">1</span>)
30 <span class="del-only-one"><?php esc_html_e("backup?", 'backup-backup'); ?></span>
31 <span class="del-more-than-one" style="display: none;"><?php esc_html_e("backups?", 'backup-backup'); ?></span>
32 </div>
33
34 <div class="center f24 bold mbl lh30 text3" style="display: none;">
35 <?php esc_html_e("Are you sure you want to", 'backup-backup'); ?><br>
36 <?php esc_html_e("delete", 'backup-backup'); ?>
37 (<span class="backup-multiple-del-count">1</span>)
38 <span class="del-only-one"><?php esc_html_e("backup from your Cloud Storage(s)?", 'backup-backup'); ?></span>
39 <span class="del-more-than-one"><?php esc_html_e("backups from your Cloud Storage(s)?", 'backup-backup'); ?></span>
40 </div>
41
42 <div class="center f24 bold mbl lh30 text4" style="display: none;">
43 <?php esc_html_e("Are you sure you want to", 'backup-backup'); ?><br>
44 <?php esc_html_e("delete", 'backup-backup'); ?>
45 <?php esc_html_e("this backup from your Cloud Storage(s)?", 'backup-backup'); ?>
46 </div>
47
48 <div class="bmi-cloud-notice-text text3 text4" style="display: none;">
49 <span class="del-only-one"><?php esc_html_e("(That backup is not located on your local storage)", 'backup-backup'); ?></span>
50 <span class="del-more-than-one"><?php esc_html_e("(These backups are not located on your local storage)", 'backup-backup'); ?></span>
51 </div>
52
53 <div class="bmi-cloud-removal">
54 <label for="remove-cloud-backup-as-well">
55 <input type="checkbox" id="remove-cloud-backup-as-well">
56 <span><?php esc_html_e("Delete it from Cloud Storage(s) as well?", 'backup-backup'); ?></span>
57 </label>
58 </div>
59
60 <div class="center f19 mbl">
61 <a href="#" id="sure_delete" class="btn bold red inline mm60">
62 <?php esc_html_e("Yes, kill it!", 'backup-backup'); ?>
63 </a>
64 </div>
65
66 <div class="center f19">
67 <a href="#" class="bold bmi-modal-closer hoverable text-muted nodec">
68 <?php esc_html_e("No, cancel", 'backup-backup'); ?>
69 </a>
70 </div>
71
72 </div>
73 </div>
74
75 </div>
76