ajax
5 years ago
config
5 years ago
cron
5 years ago
css
5 years ago
fonts
5 years ago
img
5 years ago
include
5 years ago
js
5 years ago
templates
5 years ago
backups.php
5 years ago
boot.php
5 years ago
cloud.php
5 years ago
dashboardWidget.php
5 years ago
pagesContent.php
5 years ago
proFeatures.php
5 years ago
restore_wordpress.php
5 years ago
schedule.php
5 years ago
security.php
5 years ago
services.php
5 years ago
settings.php
5 years ago
support.php
5 years ago
systemInfo.php
5 years ago
pagesContent.php
26 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 | |
| 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__).'support.php'); ?> |
| 19 | <?php require_once(plugin_dir_path(__FILE__).'proFeatures.php'); ?> |
| 20 | </div> |
| 21 | </div> |
| 22 | <div class="clearfix"></div> |
| 23 | <?php |
| 24 | require_once(SG_PUBLIC_INCLUDE_PATH.'/footer.php'); |
| 25 | ?> |
| 26 |