ajax
3 years ago
config
4 years ago
cron
6 years ago
css
3 years ago
fonts
5 years ago
img
3 years ago
include
3 years ago
js
3 years ago
templates
3 years ago
backups.php
3 years ago
boot.php
3 years ago
cloud.php
3 years ago
dashboardWidget.php
3 years ago
pagesContent.php
3 years ago
proFeatures.php
3 years ago
restore_wordpress.php
3 years ago
schedule.php
3 years ago
security.php
3 years ago
services.php
3 years ago
settings.php
3 years ago
support.php
3 years ago
systemInfo.php
3 years ago
videoTutorials.php
3 years ago
pagesContent.php
31 lines
| 1 | <?php |
| 2 | require_once(dirname(__FILE__) . '/boot.php'); |
| 3 | require_once(SG_BACKUP_PATH . 'SGBackup.php'); |
| 4 | require_once(SG_PUBLIC_INCLUDE_PATH . 'header.php'); |
| 5 | require_once(SG_PUBLIC_INCLUDE_PATH . 'sidebar.php'); |
| 6 | $pluginCapabilities = backupGuardGetCapabilities(); |
| 7 | $pluginCapabilities = backupGuardGetCapabilities(); |
| 8 | ?> |
| 9 | <div class="sg-top-info"><?php echo backupGuardLoggedMessage(); ?></div> |
| 10 | <div id="sg-content-wrapper"> |
| 11 | <div class="container-fluid"> |
| 12 | <?php require_once(plugin_dir_path(__FILE__) . 'backups.php'); ?> |
| 13 | <?php require_once(plugin_dir_path(__FILE__) . 'cloud.php'); ?> |
| 14 | <?php require_once(plugin_dir_path(__FILE__) . 'schedule.php'); ?> |
| 15 | <?php require_once(plugin_dir_path(__FILE__) . 'settings.php'); ?> |
| 16 | <?php require_once(plugin_dir_path(__FILE__) . 'systemInfo.php'); ?> |
| 17 | <?php require_once(plugin_dir_path(__FILE__) . 'services.php'); ?> |
| 18 | <?php require_once(plugin_dir_path(__FILE__) . 'videoTutorials.php'); ?> |
| 19 | <?php require_once(plugin_dir_path(__FILE__) . 'support.php'); ?> |
| 20 | <?php |
| 21 | if (SGBoot::isFeatureAvailable('SHOW_UPGRADE_PAGE')) { |
| 22 | require_once(plugin_dir_path(__FILE__) . 'proFeatures.php'); |
| 23 | } |
| 24 | ?> |
| 25 | </div> |
| 26 | </div> |
| 27 | <div class="clearfix"></div> |
| 28 | <?php |
| 29 | require_once(SG_PUBLIC_INCLUDE_PATH . '/footer.php'); |
| 30 | ?> |
| 31 |