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
super-quick-migration.php
34 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 | <div class="collapser ignorehov section-bmi shadow section-bmi" group="quick-migration"> |
| 12 | <div class="header f20 pointer ignorehov transition heading-sq"><span class="bold"><?php _e('Super-quick migration', 'backup-backup') ?></span></div> |
| 13 | <div class="content"> |
| 14 | <img src="<?php echo $this->get_asset('images', 'clocks-min.png'); ?>" class="bg-quick-migration" alt="bg-watches"> |
| 15 | <div class="content-above"> |
| 16 | |
| 17 | <div class="f16 medium text-heading"> |
| 18 | <?php _e('Paste the URL you received after creating a backup:', 'backup-backup') ?> |
| 19 | </div> |
| 20 | |
| 21 | <input type="text" autocomplete="off" id="bm-d-url" placeholder="<?php _e('E.g.', 'backup-backup') ?> https://your-site.com/?backup=bmi_backup.zip&secret" class="light"> |
| 22 | |
| 23 | <div class="center"> |
| 24 | <button type="button" id="quick-download-migration" class="f16 semibold with-icon centred"> |
| 25 | <div class="for-img"> |
| 26 | <img src="<?php echo $this->get_asset('images', 'restore-icon-min.png'); ?>" alt="restore-img"> |
| 27 | <span><?php _e('Restore now!', 'backup-backup') ?></span> |
| 28 | </div> |
| 29 | </button> |
| 30 | </div> |
| 31 | </div> |
| 32 | </div> |
| 33 | </div> |
| 34 |