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 / staging-progress-modal.php
backup-backup / includes / dashboard / modals Last commit date
AA-Modal-Template.php 3 months ago after-logs-sent.php 3 months ago backup-progress-modal.php 3 months ago backup-success-modal.php 3 months ago bb-disconnect-modal.php 3 months ago bb-warning-notice.php 3 months ago before-update-confirm-modal.php 3 months ago bfs-modal.php 3 months ago delete-confirm-modal.php 3 months ago error-modal.php 3 months ago freeze-loading.php 3 months ago logs-modal.php 3 months ago logs-sharing-ask.php 3 months ago pre-restore-modal.php 3 months ago prenotice-modal.php 3 months ago reset-confirm-modal.php 3 months ago restore-parts-modal.php 3 months ago restore-progress-modal.php 3 months ago restore-success-modal.php 3 months ago staging-delete-confirm-modal.php 3 months ago staging-error-modal.php 3 months ago staging-prenotice-modal.php 3 months ago staging-progress-modal.php 3 months ago staging-rename-modal.php 3 months ago staging-success-modal.php 3 months ago supportive-restore-success-cont.php 3 months ago supportive-restore-success-modal.php 3 months ago upload-exist-file-modal.php 3 months ago upload-invalid-manifest-modal.php 3 months ago upload-success-modal.php 3 months ago upload-wrong-file-modal.php 3 months ago
staging-progress-modal.php
63 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 bmi-modal-not-allowed" id="staging-progress-modal">
12
13 <div class="bmi-modal-wrapper no-hpad" style="max-width: 900px; max-width: min(900px, 80vw)">
14 <div class="bmi-modal-content center">
15
16 <div class="mm60 f30 bold black"><?php esc_html_e('Staging site creation in progress', 'backup-backup') ?></div>
17
18 <div class="red-error-bg tml" style="display: none;">
19 <div class="red-warning mtl mbl f18">
20 <?php esc_html_e('Do not close this window as long as the creation process is ongoing', 'backup-backup'); ?>
21 </div>
22 </div>
23
24 <div class="mm60 progress-bar-wrapper">
25
26 <div class="progress-bar">
27 <div class="progress-active-bar" style="width: 0%;"></div>
28 <div class="progress-percentage" style="left: 0%;">0%</div>
29 </div>
30
31 </div>
32
33 <div class="mm60 step-progress cf">
34 <div class="left f16 medium">
35 <?php esc_html_e('Step: ', 'backup-backup') ?>
36 <span id="staging_current_step"><?php esc_html_e('Preparing creation of staging site...', 'backup-backup') ?></span>
37 </div>
38 </div>
39
40 <div class="mm60 live-log" id="staging-live-log-wrapper">
41
42 <div class="log-wrapper">
43 <pre></pre>
44 </div>
45
46 <div class="f16 semibold secondary hoverable pointer">
47 <a href="<?php echo esc_url( get_site_url() . '/?backup-migration=PROGRESS_LOGS&progress-id=latest_staging.log&bmi-id=current&t=' . time() . '&sk=' . bmi_get_config('REQUEST:SECRET') ); ?>"
48 download="staging_live_log.txt" class="nlink">
49 <?php esc_html_e('Download live log', 'backup-backup') ?>
50 </a>
51 <span>&nbsp;|&nbsp;</span>
52 <div class="f16 inline" id="bmi-staging-stop">
53 <?php esc_html_e('Stop the process', 'backup-backup') ?>
54 </div>
55 </div>
56
57 </div>
58
59 </div>
60 </div>
61
62 </div>
63