partials
2 weeks ago
advanced-exclude-options.php
11 months ago
backup-parts.php
10 months ago
backup-scheduling-options.php
2 days ago
backup-storages.php
2 days ago
backup.php
2 days ago
confirm-restore.php
2 weeks ago
download-modal.php
10 months ago
edit-schedule-modal.php
2 weeks ago
manage-schedules.php
2 weeks ago
remote-upload.php
4 months ago
restore.php
2 weeks ago
upload.php
2 weeks ago
edit-schedule-modal.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * @var \WPStaging\Framework\Adapter\Directory $directory |
| 5 | * @var string $urlAssets |
| 6 | */ |
| 7 | $schedules = WPStaging\Core\WPStaging::make(\WPStaging\Backup\BackupScheduler::class)->getSchedules(); |
| 8 | ?> |
| 9 | <div |
| 10 | id="wpstg--modal--edit--backup--schedules" |
| 11 | data-cancelButtonText="<?php esc_attr_e('CANCEL', 'wp-staging'); ?>" |
| 12 | style="display: none" |
| 13 | > |
| 14 | <h2 class="wpstg--modal--edit--backup--schedules--title wpstg-modal-title"> |
| 15 | <?php esc_html_e('Edit Backup Schedule', 'wp-staging') ?> |
| 16 | </h2> |
| 17 | <div id="wpstg--modal--edit--backup--schedules--content" class=""></div> |
| 18 | </div> |
| 19 |