ajax
3 years ago
config
3 years ago
cron
3 years ago
css
3 years ago
fonts
3 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
settings.php
3 years ago
support.php
3 years ago
systemInfo.php
3 years ago
videoTutorials.php
3 years ago
pagesContent.php
29 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 | |
| 18 | <?php |
| 19 | if (SGBoot::isFeatureAvailable('SHOW_UPGRADE_PAGE')) { |
| 20 | require_once(plugin_dir_path(__FILE__) . 'proFeatures.php'); |
| 21 | } |
| 22 | ?> |
| 23 | </div> |
| 24 | </div> |
| 25 | <div class="clearfix"></div> |
| 26 | <?php |
| 27 | require_once(SG_PUBLIC_INCLUDE_PATH . '/footer.php'); |
| 28 | ?> |
| 29 |