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
backups-table-header.php
46 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 | <tr> |
| 12 | <th> |
| 13 | <label for="backups-select-all"> |
| 14 | <input id="backups-select-all" type="checkbox"> |
| 15 | <div class="inline tooltip" tooltip="<?php _e('When your backup was created, in server time', 'backup-backup') ?>." data-top="5"> |
| 16 | <?php _e('Backup date', 'backup-backup') ?> |
| 17 | </div> |
| 18 | </label> |
| 19 | </th> |
| 20 | <th> |
| 21 | <div class="inline tooltip" tooltip="<?php _e('The name of your backup. To see the logic which default names your backups get, go to chapter "How backups will be stored"', 'backup-backup') ?>." data-top="5"> |
| 22 | <?php _e('Filename', 'backup-backup') ?> <?php _e('– hover to see the domain name', 'backup-backup') ?> |
| 23 | </div> |
| 24 | </th> |
| 25 | <th> |
| 26 | <div class="inline tooltip" tooltip="<?php _e('Size of your backup file', 'backup-backup') ?>." data-top="5"> |
| 27 | <?php _e('Size', 'backup-backup') ?> |
| 28 | </div> |
| 29 | </th> |
| 30 | <th style="text-align: center;"> |
| 31 | <div class="inline tooltip" tooltip="<?php _e('Where your backup file is stored. Move over the icons to find out.', 'backup-backup') ?>" data-top="5"> |
| 32 | <?php _e('Where stored?', 'backup-backup') ?> |
| 33 | </div> |
| 34 | </th> |
| 35 | <th style="text-align: center;"> |
| 36 | <div class="tooltip inline" tooltip="<?php _e('Locked backups can only be deleted manually. Unlocked backups get deleted automatically according to the deletion processes which you defined at the top of the "Create backups" - tab. Click on the icon(s) to change the lock status.', 'backup-backup') ?>" data-top="5"> |
| 37 | <?php _e('Lock', 'backup-backup') ?> |
| 38 | </div> |
| 39 | </th> |
| 40 | <th style="text-align: center;" colspan="3"> |
| 41 | <div class="inline tooltip" tooltip="<?php _e('Move over the icons to see what you can do with the backup(s)', 'backup-backup') ?>." data-top="5"> |
| 42 | <?php _e('Actions', 'backup-backup') ?> |
| 43 | </div> |
| 44 | </th> |
| 45 | </tr> |
| 46 |