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 / job / modal / process.php
wp-staging / views / job / modal Last commit date
confirm-cancel.php 10 months ago process.php 2 months ago success.php 2 weeks ago
process.php
30 lines
1 <div id="wpstg--process-modal" data-cancelButtonText="<?php esc_attr_e('Cancel', 'wp-staging') ?>" class="wpstg--process-modal">
2 <span class="wpstg-loader"></span>
3 <h3 class="wpstg--process-modal--title">
4 <?php esc_html_e('Processing...', 'wp-staging') ?>
5 </h3>
6 <div class="wpstg--process-modal--subtitle">
7 <?php esc_html_e('Progress', 'wp-staging') ?>
8 <span class="wpstg--process-modal--percent">0</span>% - <?php esc_html_e('Elapsed time', 'wp-staging');?>
9 <span class="wpstg--process-modal--elapsed-time">0:00</span>
10 </div>
11 <div class="wpstg--process-modal--info-strip" style="display: none;">
12 <?php esc_html_e('You can close this window. Remote Sync will continue in the background.', 'wp-staging'); ?>
13 </div>
14 <div class="wpstg--process-modal--no-update-message" style="display: none; color: red; margin-top: 10px; margin-bottom: 10px;">
15 <?php esc_html_e('No updates from the server. Please cancel the process if it does not stop automatically and contact support.', 'wp-staging'); ?>
16 </div>
17 <button class="wpstg--process-modal--logs-button wpstg-btn wpstg-btn-ghost" data-txt-bad="<?php echo sprintf(
18 esc_attr__('(%s) Critical, (%s) Errors, (%s) Warnings. Show Logs', 'wp-staging'),
19 '<span class=\'wpstg--modal--logs--critical-count\'>0</span>',
20 '<span class=\'wpstg--modal--logs--error-count\'>0</span>',
21 '<span class=\'wpstg--modal--logs--warning-count\'>0</span>'
22 ) ?>">
23 <?php esc_html_e('Show Logs', 'wp-staging') ?>
24 </button>
25 <div class="wpstg--process-modal--generic-problem"></div>
26 <div class="wpstg--process-modal--logs wpstg--logs--container">
27 <?php require(WPSTG_VIEWS_DIR . 'logs/logs-template.php'); ?>
28 </div>
29 </div>
30