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
quota-errors.php
35 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 | <?php if (get_transient('bmip_display_quota_issues') && !get_option('bmip_dismissed_quota_notice', false)): ?> |
| 12 | |
| 13 | <div class="error-noticer" id="quota-issues"> |
| 14 | <div class="error-header"> |
| 15 | <div class="cf"> |
| 16 | <div class="left"> |
| 17 | <?php _e('We have some error regarding most recent backup upload process.', 'backup-backup'); ?> |
| 18 | </div> |
| 19 | <div class="right hoverable"> |
| 20 | <span class="bmi-error-toggle" data-expand="<?php _e('Expand', 'backup-backup'); ?>" data-collapse="<?php _e('Collapse', 'backup-backup'); ?>"> |
| 21 | <?php _e('Expand', 'backup-backup'); ?> |
| 22 | </span> | |
| 23 | <span id="bmip-quota-issues-dismiss"> |
| 24 | <?php _e('Dismiss', 'backup-backup'); ?> |
| 25 | </span> |
| 26 | </div> |
| 27 | </div> |
| 28 | </div> |
| 29 | <div class="error-body"> |
| 30 | <?php echo get_transient('bmip_display_quota_issues'); ?> |
| 31 | </div> |
| 32 | </div> |
| 33 | |
| 34 | <?php endif; ?> |
| 35 |