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 / backup-progress-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
backup-progress-modal.php
78 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 bmi-modal-no-close" id="backup-progress-modal">
12
13 <div class="bmi-modal-wrapper" style="max-width: 900px; max-width: min(900px, 80vw)">
14 <div class="bmi-modal-content center">
15
16 <div class="mm60 f26 bold black title"><?php _e('Backup in progress', 'backup-backup') ?></div>
17
18 <div class="progress-bar-wrapper">
19
20 <div class="progress-bar">
21 <div class="progress-active-bar" style="width: 0%;"></div>
22 <div class="progress-percentage" style="left: 0%;">0%</div>
23 </div>
24
25 </div>
26
27 <div class="step-progress cf">
28 <div class="right f16 medium hoverable pointer"
29 data-show="<?php _e('Show live log', 'backup-backup') ?>"
30 data-hide="<?php _e('Hide live log', 'backup-backup') ?>"
31 id="live-log-toggle"
32 >
33 <?php _e('Hide live log', 'backup-backup') ?>
34 </div>
35 <div class="left f16 medium">
36 <?php _e('Step: ', 'backup-backup') ?>
37 <span id="current_step"><?php _e('Preparing backup process...', 'backup-backup') ?></span>
38 </div>
39 </div>
40
41 <div class="live-log" id="live-log-wrapper">
42
43 <div class="log-wrapper">
44 <pre></pre>
45 </div>
46 <div class="f16 semibold secondary hoverable pointer">
47 <a href="<?php echo get_site_url(); ?>/?backup-migration=PROGRESS_LOGS&progress-id=latest.log&backup-id=current&t=<?php echo time(); ?>&sk=<?php echo bmi_get_config('REQUEST:SECRET'); ?>"
48 download="backup_live_logs.txt" class="nlink">
49 <?php _e('Download live log', 'backup-backup') ?>
50 </a>
51 <span>&nbsp;|&nbsp;</span>
52 <div class="f16 bmi-modal-closer inline" data-close="backup-progress-modal" id="backup-stop">
53 <?php _e('Stop the process', 'backup-backup') ?>
54 </div>
55 </div>
56
57 </div>
58
59 <div class="f18 semibold mtll">
60 <?php _e('Please don’t do any major modifications on your site while the backup is running.', 'backup-backup') ?>
61 </div>
62
63 <div class="mtl">
64 <div>
65 <a href="#" class="btn inline btn-with-img btn-img-low-pad btn-pad bmi-modal-closer backup-minimize">
66 <div class="text">
67 <img src="<?php echo $this->get_asset('images', 'minimize-min.png'); ?>" alt="minimize-img">
68 <div class="f18 semibold"><?php _e('Minimize this window', 'backup-backup') ?></div>
69 </div>
70 </a>
71 </div>
72 </div>
73
74 </div>
75 </div>
76
77 </div>
78