PluginProbe ʕ •ᴥ•ʔ
Backup Migration / 1.4.9
Backup Migration v1.4.9
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-success-modal.php
backup-backup / includes / dashboard / modals Last commit date
AA-Modal-Template.php 1 year ago after-logs-sent.php 1 year ago backup-progress-modal.php 1 year ago backup-success-modal.php 1 year ago bb-disconnect-modal.php 1 year ago bb-warning-notice.php 1 year ago before-update-confirm-modal.php 1 year ago bfs-modal.php 1 year ago delete-confirm-modal.php 1 year ago error-modal.php 1 year ago freeze-loading.php 1 year ago logs-modal.php 1 year ago logs-sharing-ask.php 1 year ago pre-restore-modal.php 1 year ago prenotice-modal.php 1 year ago reset-confirm-modal.php 1 year ago restore-parts-modal.php 1 year ago restore-progress-modal.php 1 year ago restore-success-modal.php 1 year ago staging-delete-confirm-modal.php 1 year ago staging-error-modal.php 1 year ago staging-prenotice-modal.php 1 year ago staging-progress-modal.php 1 year ago staging-rename-modal.php 1 year ago staging-success-modal.php 1 year ago supportive-restore-success-cont.php 1 year ago supportive-restore-success-modal.php 1 year ago upload-exist-file-modal.php 1 year ago upload-invalid-manifest-modal.php 1 year ago upload-success-modal.php 1 year ago upload-wrong-file-modal.php 1 year ago
upload-success-modal.php
40 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-success-modal">
12
13 <div class="bmi-modal-wrapper" style="max-width: 645px; max-width: min(645px, 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', 'success.png'); ?>" alt="success">
20 </div>
21 <div class="left f24 bold lh50"><?php _e("Upload successful!", 'backup-backup'); ?></div>
22 </div>
23 </div>
24
25 <div class="f19 mbl center lh30">
26 <?php _e("We also triggered a rescan of your local folder automatically,", 'backup-backup'); ?><br>
27 <?php _e("so that the file will show up in your list of backups.", 'backup-backup'); ?>
28 </div>
29
30 <div class="center">
31 <a href="#" class="btn bmi-modal-closer inline mm60 center block bold nodec">
32 <?php _e("Ok, close", 'backup-backup'); ?>
33 </a>
34 </div>
35
36 </div>
37 </div>
38
39 </div>
40