PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backup, Restore, Migration & Clone / 3.3.1
WP STAGING – WordPress Backup, Restore, Migration & Clone v3.3.1
4.9.3 4.9.2 4.9.1 4.9.0 4.8.1 trunk 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.10.0 3.2.0 3.3.1 3.3.2 3.3.3 3.4.1 3.4.3 3.5.0 3.6.0 3.7.1 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 4.0.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0 4.2.1 4.3.0 4.3.1 4.3.2 4.4.0 4.5.0 4.6.0 4.7.0 4.7.1 4.7.2 4.7.3 4.8.0
wp-staging / Backend / views / backup / free-version.php
wp-staging / Backend / views / backup Last commit date
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