PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backups, Restore, Migration & Clone / 4.7.0
WP STAGING – WordPress Backups, Restore, Migration & Clone v4.7.0
4.11.2 4.11.1 4.11.0 4.10.0 4.9.5 4.9.4 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 / views / backup / free-version.php
wp-staging / views / backup Last commit date
modal 5 months ago partials 9 months ago free-version.php 5 months ago listing-backups-no-results.php 2 years ago listing-single-backup.php 5 months ago listing-single-cloud-backup.php 9 months ago listing.php 6 months ago restore-wait.php 1 year ago
free-version.php
30 lines
1 <?php
2
3 /**
4 * @see \WPStaging\Backup\Ajax\Listing::render
5 */
6
7 use WPStaging\Framework\Facades\Escape;
8 use WPStaging\Framework\Language\Language;
9
10 ?>
11
12 <div id="wpstg-did-you-know" style="margin-bottom:12px">
13 <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', Language::localizeDocsUrl('https://wp-staging.com/docs/how-to-migrate-your-wordpress-site-to-a-new-host/')); ?></strong>
14 </div>
15
16 <div id="wpstg-step-1">
17 <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'); ?>">
18 <img class="wpstg--dashicons wpstg-mr-10px" src="<?php echo esc_url($urlAssets ?? ''); ?>svg/update.svg" alt="create" />
19 <?php esc_html_e('Create Backup', 'wp-staging') ?>
20 </button>
21 <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'); ?>">
22 <img class="wpstg--dashicons wpstg-mr-10px" src="<?php echo esc_url($urlAssets ?? ''); ?>svg/upload-cloud.svg" alt="upload" />
23 <?php esc_html_e('Upload Backup', 'wp-staging') ?>
24 </button>
25 <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'); ?>">
26 <img class="wpstg--dashicons wpstg-mr-10px" src="<?php echo esc_url($urlAssets ?? ''); ?>svg/edit.svg" alt="edit" />
27 <?php esc_html_e('Edit Backup Plans', 'wp-staging') ?>
28 </button>
29 </div>
30