PluginProbe ʕ •ᴥ•ʔ
Backup Migration / 2.1.7
Backup Migration v2.1.7
2.1.7 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 3 weeks ago backup_controller.php 3 weeks ago backups-table-header.php 3 weeks ago backups-under-table.php 3 weeks ago before-update-backup-errors.php 3 weeks ago cloud-backup-notice.php 3 weeks ago email-errors.php 3 weeks ago ping-server-is-not-working-notice.php 3 weeks ago plugins-auto-update-notice.php 3 weeks ago quota-errors.php 3 weeks ago security-plugins-warning.php 3 weeks ago site-is-local-notice.php 3 weeks ago stream-backup-notice.php 3 weeks ago super-quick-migration.php 3 weeks ago support-chat.php 3 weeks ago upload-backup.php 3 weeks 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 esc_attr_e('When your backup was created, in server time', 'backup-backup') ?>." data-top="5">
16 <?php esc_html_e('Backup date', 'backup-backup') ?>
17 </div>
18 </label>
19 </th>
20 <th>
21 <div class="inline tooltip" tooltip="<?php esc_attr_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 esc_html_e('Filename', 'backup-backup') ?> <?php esc_html_e('– hover to see the domain name', 'backup-backup') ?>
23 </div>
24 </th>
25 <th>
26 <div class="inline tooltip" tooltip="<?php esc_attr_e('Size of your backup file', 'backup-backup') ?>." data-top="5">
27 <?php esc_html_e('Size', 'backup-backup') ?>
28 </div>
29 </th>
30 <th style="text-align: center;">
31 <div class="inline tooltip" tooltip="<?php esc_attr_e('Where your backup file is stored. Move over the icons to find out.', 'backup-backup') ?>" data-top="5">
32 <?php esc_html_e('Where stored?', 'backup-backup') ?>
33 </div>
34 </th>
35 <th style="text-align: center;">
36 <div class="tooltip inline" tooltip="<?php esc_attr_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 esc_html_e('Lock', 'backup-backup') ?>
38 </div>
39 </th>
40 <th style="text-align: center;" colspan="3">
41 <div class="inline tooltip" tooltip="<?php esc_attr_e('Move over the icons to see what you can do with the backup(s)', 'backup-backup') ?>." data-top="5">
42 <?php esc_html_e('Actions', 'backup-backup') ?>
43 </div>
44 </th>
45 </tr>
46