PluginProbe ʕ •ᴥ•ʔ
Backup Migration / 1.3.0
Backup Migration v1.3.0
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 / upload-exist-file-modal.php
backup-backup / includes / dashboard / modals Last commit date
AA-Modal-Template.php 2 years ago after-logs-sent.php 2 years ago backup-error-modal.php 2 years ago backup-progress-modal.php 2 years ago backup-success-modal.php 2 years ago bfs-modal.php 2 years ago delete-confirm-modal.php 2 years ago freeze-loading.php 2 years ago logs-sharing-ask.php 2 years ago pre-restore-modal.php 2 years ago prenotice-modal.php 2 years ago reset-confirm-modal.php 2 years ago restore-error-modal.php 2 years ago restore-progress-modal.php 2 years ago restore-success-modal.php 2 years ago staging-delete-confirm-modal.php 2 years ago staging-error-modal.php 2 years ago staging-prenotice-modal.php 2 years ago staging-progress-modal.php 2 years ago staging-rename-modal.php 2 years ago staging-success-modal.php 2 years ago upload-exist-file-modal.php 2 years ago upload-invalid-manifest-modal.php 2 years ago upload-success-modal.php 2 years ago upload-wrong-file-modal.php 2 years ago
upload-exist-file-modal.php
42 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="upload-exist-file-modal">
12
13 <div class="bmi-modal-wrapper" style="max-width: 564px; max-width: min(564px, 80vw);">
14 <div class="bmi-modal-content">
15
16 <div class="center">
17 <div class="mbl cf center block inline">
18 <div class="left center">
19 <img class="inline" src="<?php echo $this->get_asset('images', 'warning-red.png'); ?>" alt="error">
20 </div>
21 <div class="left f24 bold lh50 mms"><?php _e("File already exist", 'backup-backup'); ?></div>
22 </div>
23 </div>
24
25 <div class="center f19 regular mbl lh30">
26 <?php _e("The file you tried to upload already match,", 'backup-backup'); ?><br>
27 <?php _e("name and size of file which already,", 'backup-backup'); ?><br>
28 <?php _e("exist in your backup directory.", 'backup-backup'); ?><br><br>
29 <?php _e("If you wish to have duplicate change name of the upload.", 'backup-backup'); ?><br>
30 </div>
31
32 <div class="center">
33 <a href="#" class="btn bmi-modal-closer inline mm60 center block bold nodec">
34 <?php _e("Ok, close", 'backup-backup'); ?>
35 </a>
36 </div>
37
38 </div>
39 </div>
40
41 </div>
42