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
before-update-backup-errors.php
37 lines
| 1 | <?php |
| 2 | |
| 3 | // Namespace |
| 4 | namespace BMI\Plugin\Dashboard; |
| 5 | use BMI\Plugin\Backup_Migration_Plugin AS BMP; |
| 6 | |
| 7 | // Exit on direct access |
| 8 | if (!defined('ABSPATH')) exit; |
| 9 | |
| 10 | $beforeUpdateIssue = get_option('bmi_display_before_update_backup_issues', false); |
| 11 | ?> |
| 12 | |
| 13 | <?php if ($beforeUpdateIssue): ?> |
| 14 | |
| 15 | <div class="error-noticer" id="before-update-issues"> |
| 16 | <div class="error-header"> |
| 17 | <div class="cf"> |
| 18 | <div class="left"> |
| 19 | <?php _e('We have some notices regarding most recent before update backup.', 'backup-backup'); ?> |
| 20 | </div> |
| 21 | <div class="right hoverable"> |
| 22 | <span class="bmi-error-toggle" data-expand="<?php _e('Expand', 'backup-backup'); ?>" data-collapse="<?php _e('Collapse', 'backup-backup'); ?>"> |
| 23 | <?php _e('Expand', 'backup-backup'); ?> |
| 24 | </span> | |
| 25 | <span id="bmi-error-dismiss"> |
| 26 | <?php _e('Dismiss', 'backup-backup'); ?> |
| 27 | </span> |
| 28 | </div> |
| 29 | </div> |
| 30 | </div> |
| 31 | <div class="error-body"> |
| 32 | <?php echo $beforeUpdateIssue; ?> |
| 33 | </div> |
| 34 | </div> |
| 35 | |
| 36 | <?php endif; ?> |
| 37 |