PluginProbe ʕ •ᴥ•ʔ
Backup Migration / 2.1.2
Backup Migration v2.1.2
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-under-table.php
backup-backup / includes / dashboard / modules Last commit date
backup-ongoing.php 3 months ago backup_controller.php 3 months ago backups-table-header.php 3 months ago backups-under-table.php 3 months ago before-update-backup-errors.php 3 months ago email-errors.php 3 months ago plugins-auto-update-notice.php 3 months ago quota-errors.php 3 months ago security-plugins-warning.php 3 months ago super-quick-migration.php 3 months ago support-chat.php 3 months ago upload-backup.php 3 months ago
backups-under-table.php
94 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 <div class="cf lh28 valign-restore">
13
14 <div class="left cf hoverable" id="show-upload-area">
15 <div class="left">
16 <img class="a2" src="<?php echo esc_url($this->get_asset('images', 'upload-min.png')); ?>" width="15px" alt="image">
17 </div>
18 <div class="left f16 secondary hoverable">
19 <?php esc_html_e('Upload backup files', 'backup-backup') ?>
20 </div>
21 </div>
22
23 <div class="left cf" style="margin-left: 35px;">
24 <div class="left">
25 <img class="a1" src="<?php echo esc_url($this->get_asset('images', 'search-min.png')); ?>" width="15px" alt="image">
26 </div>
27 <div class="left f16">
28 <?php esc_html_e('Rescan for backup files:', 'backup-backup') ?>
29 <a href="#" id="rescan-for-backups" class="secondary hoverable"><?php esc_html_e('Refresh', 'backup-backup') ?></a>
30 <span style="display: none;">| <a href="#"><?php esc_html_e('Remotely', 'backup-backup') ?></a></span>
31 <span id="reloading-bm-list" style="display: none;"><div class="spinner-loader"></div></span>
32 </div>
33 </div>
34
35 </div>
36
37 <div class="mtl del-all-btn-wrp mbll" style="display: none;">
38 <button class="btn red deleteAllSelected"><?php esc_html_e('Delete all selected backups', 'backup-backup') ?></button>
39 </div>
40
41 <div class="upload_area hidden">
42
43 <div id="drop-area">
44 <label for="upid_input">
45 <form class="my-form center mt">
46 <div class="img_upload center block"></div>
47 <div class="f18 muted-text mtll">
48 <?php esc_html_e("Drag & drop your backup file here", 'backup-backup'); ?>
49 </div>
50 <div class="cf mtl center inline">
51 <div class="left ortext">
52 <?php esc_html_e("...or", 'backup-backup'); ?>&nbsp;&nbsp;
53 </div>
54 <div class="left">
55 <div class="btn upload_button">
56 <?php esc_html_e("Browse for file", 'backup-backup'); ?>
57 </div>
58 </div>
59 </div>
60 <input type="file" id="upid_input" accept=".zip,.gz,.tar" onchange="jQuery.fchunker_upload()">
61 </form>
62 </label>
63 </div>
64
65 <div class="mtl center upload-progress" style="display: none;">
66
67 <div class="upload-title mtl">
68 <?php esc_html_e("Upload in progress", 'backup-backup'); ?>
69 </div>
70
71 <div class="upload-progress-bar">
72 <span>
73 <div class="upload-percentage">99%</div>
74 </span>
75 </div>
76
77 <div class="mtll">
78 <a href="#" class="f16 medium red-text nodec hoverable" onclick="window.location.reload()"><?php esc_html_e("Cancel upload", 'backup-backup'); ?></a>
79 </div>
80
81 </div>
82
83 <div class="f18 mt30 lh30">
84 <?php esc_html_e("Alternatively, you can place the files (e.g. via FTP) into your local backup directory", 'backup-backup'); ?> (<?php echo esc_html(BMP::fixSlashes(BMI_BACKUPS)); ?>) <?php esc_html_e('or remote storage, and then use the "Rescan for backup files" - option above to make them show up in the list.', 'backup-backup'); ?>
85 </div>
86
87 </div>
88
89 <div class="center mtll" id="load-more-backups-wrp">
90 <a href="#" id="load-more-backups" style="display: none;" class="btn inline semibold mm60">
91 <?php esc_html_e('Load more', 'backup-backup'); ?>
92 </a>
93 </div>
94