PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backup, Restore, Migration & Clone / 4.9.2
WP STAGING – WordPress Backup, Restore, Migration & Clone v4.9.2
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 1 day ago partials 7 months ago free-version.php 1 day ago listing-backups-no-results.php 1 year ago listing-single-backup.php 1 day ago listing-single-cloud-backup.php 7 months ago listing.php 1 day ago restore-wait.php 11 months ago
free-version.php
59 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 <span class="wpstg-notice-alert">
13 <?php echo sprintf(
14 Escape::escapeHtml(__('The free version of WP Staging Backup Plugin does not support WordPress Multisite. You can consider upgrading to the <a href="%s" target="_blank">pro version</a> as needed.', 'wp-staging')),
15 esc_url(Language::getUpgradeUrl('backup_multisite'))
16 ); ?>
17 </span>
18
19 <div id="wpstg-step-1" class="wpstg-flex wpstg-flex-wrap wpstg-items-center wpstg-gap-3 wpstg-mb-6">
20 <!-- Primary: Create Backup -->
21 <button
22 type="button"
23 id="wpstg-new-backup"
24 class="wpstg-btn wpstg-btn-lg wpstg-btn-primary"
25 disabled
26 >
27 <svg class="wpstg-btn-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
28 <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"></path>
29 </svg>
30 <?php esc_html_e('Create Backup', 'wp-staging'); ?>
31 </button>
32
33 <!-- Secondary: Upload Backup -->
34 <button
35 type="button"
36 id="wpstg-upload-backup"
37 class="wpstg-btn wpstg-btn-lg wpstg-btn-secondary"
38 disabled
39 >
40 <svg class="wpstg-btn-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
41 <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12"></path>
42 </svg>
43 <?php esc_html_e('Upload Backup', 'wp-staging'); ?>
44 </button>
45
46 <!-- Secondary: Manage Plans -->
47 <button
48 type="button"
49 id="wpstg-manage-backup-schedules"
50 class="wpstg-btn wpstg-btn-lg wpstg-btn-secondary"
51 disabled
52 >
53 <svg class="wpstg-btn-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
54 <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"></path>
55 </svg>
56 <?php esc_html_e('Manage Plans', 'wp-staging'); ?>
57 </button>
58 </div>
59