AA-Modal-Template.php
11 months ago
after-logs-sent.php
11 months ago
backup-progress-modal.php
11 months ago
backup-success-modal.php
11 months ago
bb-disconnect-modal.php
11 months ago
bb-warning-notice.php
11 months ago
before-update-confirm-modal.php
11 months ago
bfs-modal.php
11 months ago
delete-confirm-modal.php
11 months ago
error-modal.php
11 months ago
freeze-loading.php
11 months ago
logs-modal.php
11 months ago
logs-sharing-ask.php
11 months ago
pre-restore-modal.php
11 months ago
prenotice-modal.php
11 months ago
reset-confirm-modal.php
11 months ago
restore-parts-modal.php
11 months ago
restore-progress-modal.php
11 months ago
restore-success-modal.php
11 months ago
staging-delete-confirm-modal.php
11 months ago
staging-error-modal.php
11 months ago
staging-prenotice-modal.php
11 months ago
staging-progress-modal.php
11 months ago
staging-rename-modal.php
11 months ago
staging-success-modal.php
11 months ago
supportive-restore-success-cont.php
11 months ago
supportive-restore-success-modal.php
11 months ago
upload-exist-file-modal.php
11 months ago
upload-invalid-manifest-modal.php
11 months ago
upload-success-modal.php
11 months ago
upload-wrong-file-modal.php
11 months 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 _e('Loading...', 'backup-backup'); ?></b> |
| 21 | |
| 22 | </div> |
| 23 | </div> |
| 24 | </div> |
| 25 | |
| 26 | </div> |
| 27 |