PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backups, Restore, Migration & Clone / 4.9.4
WP STAGING – WordPress Backups, Restore, Migration & Clone v4.9.4
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 / modal / backup-parts.php
wp-staging / views / backup / modal Last commit date
partials 1 month ago advanced-exclude-options.php 1 year ago backup-parts.php 11 months ago backup-scheduling-options.php 3 weeks ago backup-storages.php 3 weeks ago backup.php 3 weeks ago confirm-restore.php 1 month ago download-modal.php 11 months ago edit-schedule-modal.php 1 month ago manage-schedules.php 1 month ago remote-upload.php 4 months ago restore.php 1 month ago upload.php 1 month ago
backup-parts.php
40 lines
1 <?php
2
3 /**
4 * @var \WPStaging\Framework\TemplateEngine\TemplateEngine $this
5 * @var array $backupParts
6 */
7
8 ?>
9 <?php
10 foreach ($backupParts as $backupPart) :?>
11 <div class="wpstg--backups--part">
12 <div class="wpstg-backup-part-header">
13 <div class="wpstg-backup-part-title">
14 <?php $this->getAssets()->renderSvg($backupPart['icon']); ?>
15 <div class="wpstg--backup-category <?php esc_attr_e($backupPart['partType'], 'wp-staging');?>">
16 <?php esc_html_e($backupPart['name'], 'wp-staging'); ?>
17 </div>
18 <?php if (!empty($backupPart['partIndex'])) : ?>
19 <span class="wpstg--backup-category wpstg--backup-category-parts">
20 <?php esc_html_e($backupPart['partIndex'], 'wp-staging'); ?>
21 </span>
22 <?php endif; ?>
23 </div>
24 <a href="<?php esc_attr_e($backupPart['downloadLink'], 'wp-staging'); ?>" class="wpstg--download-btn">
25 <?php $this->getAssets()->renderSvg('download'); ?>
26 </a>
27 </div>
28 <div class="wpstg-backup-part-desc">
29 <?php esc_html_e($backupPart['description'], 'wp-staging'); ?>
30 </div>
31 <div class="wpstg--backup-parts-info">
32 <span class="wpstg--backup-icon">
33 <?php $this->getAssets()->renderSvg('file'); ?>
34 <?php esc_html_e('File Size:', 'wp-staging');?>
35 <?php esc_html_e($backupPart['fileSize'], 'wp-staging');?>
36 </span>
37 </div>
38 </div>
39 <?php endforeach;?>
40