backup-ongoing.php
11 months ago
backup_controller.php
11 months ago
backups-table-header.php
11 months ago
backups-under-table.php
11 months ago
before-update-backup-errors.php
11 months ago
email-errors.php
11 months ago
quota-errors.php
11 months ago
security-plugins-warning.php
11 months ago
super-quick-migration.php
11 months ago
support-chat.php
11 months ago
upload-backup.php
11 months ago
backup-ongoing.php
32 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="f17 hoverable" id="bmi-ongoing-backup" style="display: none;"> |
| 14 | |
| 15 | <div class="nuts"> |
| 16 | <img class="nut spinning nut-1" src="<?php echo $this->get_asset('images', 'nut-big.png'); ?>" alt="nut"> |
| 17 | <img class="nut spinning-reverse nut-2" src="<?php echo $this->get_asset('images', 'nut-mid.png'); ?>" alt="nut"> |
| 18 | <img class="nut spinning-reverse nut-3" src="<?php echo $this->get_asset('images', 'nut-small.png'); ?>" alt="nut"> |
| 19 | </div> |
| 20 | |
| 21 | <div class="centered"> |
| 22 | <div class="bold"> |
| 23 | <?php _e("Backup in progress!", 'backup-backup'); ?> |
| 24 | </div> |
| 25 | |
| 26 | <div class=""> |
| 27 | <?php _e("Click to see status quo", 'backup-backup'); ?> |
| 28 | </div> |
| 29 | </div> |
| 30 | |
| 31 | </div> |
| 32 |