modal
2 years ago
partials
3 years ago
free-version.php
2 years ago
listing-backups-no-results.php
3 years ago
listing-single-backup.php
2 years ago
listing.php
2 years ago
restore-wait.php
3 years ago
free-version.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * @see \WPStaging\Backup\Ajax\Listing::render |
| 5 | */ |
| 6 | |
| 7 | use WPStaging\Framework\Facades\Escape; |
| 8 | |
| 9 | ?> |
| 10 | |
| 11 | <div id="wpstg-did-you-know" style="margin-bottom:12px"> |
| 12 | <strong><?php echo sprintf(Escape::escapeHtml(__('Get <a href="%s" target="_blank">WP Staging Pro</a> to upload and restore backups to another server to migrate this website. <a href="%s" target="_blank">Read more</a>', 'wp-staging')), 'https://wp-staging.com', 'https://wp-staging.com/docs/how-to-migrate-your-wordpress-site-to-a-new-host/'); ?></strong> |
| 13 | </div> |
| 14 | |
| 15 | <div id="wpstg-step-1"> |
| 16 | <button id="wpstg-new-backup" class="wpstg-next-step-link wpstg-blue-primary wpstg-button" disabled title="<?php esc_html_e('Premium: Create lightning-fast backups', 'wp-staging'); ?>"> |
| 17 | <?php esc_html_e('Create Backup', 'wp-staging') ?> |
| 18 | </button> |
| 19 | <button id="wpstg-upload-backup" class="wpstg-next-step-link wpstg-blue-primary wpstg-button wpstg-ml-4px" disabled title="<?php esc_html_e('Premium: Upload a backup to restore or move a site', 'wp-staging'); ?>"> |
| 20 | <?php esc_html_e('Upload Backup', 'wp-staging') ?> |
| 21 | </button> |
| 22 | <button id="wpstg-manage-backup-schedules" class="wpstg-next-step-link wpstg-blue-primary wpstg-button wpstg-ml-4px" disabled title="<?php esc_html_e('Premium: Create scheduled backups', 'wp-staging'); ?>"> |
| 23 | <?php esc_html_e('Edit Backup Plans', 'wp-staging') ?> |
| 24 | </button> |
| 25 | </div> |
| 26 |