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 / backups-table-header.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
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 &quot;How backups will be stored&quot;', 'backup-backup') ?>." data-top="5">
22 <?php _e('Filename', 'backup-backup') ?> <?php _e('– hover to see 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 &quot;Create backups&quot; - 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