PluginProbe ʕ •ᴥ•ʔ
Backup Migration / 2.1.7
Backup Migration v2.1.7
2.1.7 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 / freeze-loading.php
backup-backup / includes / dashboard / modals Last commit date
AA-Modal-Template.php 3 weeks ago after-logs-sent.php 3 weeks ago backup-progress-modal.php 3 weeks ago backup-success-modal.php 3 weeks ago bb-disconnect-modal.php 3 weeks ago bb-warning-notice.php 3 weeks ago before-update-confirm-modal.php 3 weeks ago bfs-modal.php 3 weeks ago delete-confirm-modal.php 3 weeks ago delete-progress-modal.php 3 weeks ago encrypt-decrypt-progress-modal.php 3 weeks ago error-modal.php 3 weeks ago freeze-loading.php 3 weeks ago logs-modal.php 3 weeks ago logs-sharing-ask.php 3 weeks ago password-request-modal.php 3 weeks ago pre-restore-modal.php 3 weeks ago prenotice-modal.php 3 weeks ago reset-confirm-modal.php 3 weeks ago restore-progress-modal.php 3 weeks ago restore-success-modal.php 3 weeks ago simple-explorer-modal.php 3 weeks ago staging-delete-confirm-modal.php 3 weeks ago staging-error-modal.php 3 weeks ago staging-prenotice-modal.php 3 weeks ago staging-progress-modal.php 3 weeks ago staging-rename-modal.php 3 weeks ago staging-success-modal.php 3 weeks ago supportive-restore-success-cont.php 3 weeks ago supportive-restore-success-modal.php 3 weeks ago upload-exist-file-modal.php 3 weeks ago upload-invalid-manifest-modal.php 3 weeks ago upload-success-modal.php 3 weeks ago upload-wrong-file-modal.php 3 weeks ago
freeze-loading.php
27 lines
1 <?php
2
3 // Namespace
4 namespace BMI\Plugin\Dashboard;
5
6 // Exit on direct access
7 if (!defined('ABSPATH')) {
8 exit;
9 }
10
11 ?>
12
13 <div class="bmi-modal bmi-modal-no-close bmi-modal-off-fixed bmi-modal-no-background-center" id="freeze-loading-modal">
14
15 <div class="bmi-modal-centered-items">
16 <div class="bmi-modal-wrapper no-hpad no-vpad" style="max-width: 900px; max-width: min(900px, 80vw)">
17 <div class="bmi-modal-content">
18
19 <div class="bmi-modal-freeze-loader"></div><br>
20 <b class="f24"><?php esc_html_e('Loading...', 'backup-backup'); ?></b>
21
22 </div>
23 </div>
24 </div>
25
26 </div>
27