PluginProbe ʕ •ᴥ•ʔ
Backup Migration / 1.3.0
Backup Migration v1.3.0
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 / modules / quota-errors.php
backup-backup / includes / dashboard / modules Last commit date
backup-ongoing.php 2 years ago backup_controller.php 2 years ago backups-table-header.php 2 years ago backups-under-table.php 2 years ago email-errors.php 2 years ago quota-errors.php 2 years ago super-quick-migration.php 2 years ago support-chat.php 2 years ago upload-backup.php 2 years ago
quota-errors.php
33 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 ?>
11
12 <?php if (get_transient('bmip_display_quota_issues')): ?>
13
14 <div class="error-noticer">
15 <div class="error-header">
16 <div class="cf">
17 <div class="left">
18 <?php _e('We have some error regarding most recent backup upload process.', 'backup-backup'); ?>
19 </div>
20 <div class="right hoverable">
21 <span id="bmi-error-toggle" data-expand="<?php _e('Expand', 'backup-backup'); ?>" data-collapse="<?php _e('Collapse', 'backup-backup'); ?>">
22 <?php _e('Expand', 'backup-backup'); ?>
23 </span>
24 </div>
25 </div>
26 </div>
27 <div class="error-body">
28 <?php echo get_transient('bmip_display_quota_issues'); ?>
29 </div>
30 </div>
31
32 <?php endif; ?>
33