index.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | use WPStaging\Framework\Facades\Sanitize; |
| 4 | |
| 5 | ?> |
| 6 | <div class="wpstg_admin" id="wpstg-clonepage-wrapper"> |
| 7 | <?php |
| 8 | |
| 9 | require_once(WPSTG_VIEWS_DIR . (defined('WPSTGPRO_VERSION') ? 'pro/_main/header.php' : '_main/header.php')); |
| 10 | |
| 11 | $isActiveSystemInfoPage = true; |
| 12 | require_once(WPSTG_VIEWS_DIR . '_main/main-navigation.php'); |
| 13 | ?> |
| 14 | <div class="wpstg-loading-bar-container"> |
| 15 | <div class="wpstg-loading-bar"></div> |
| 16 | </div> |
| 17 | <?php |
| 18 | require_once(WPSTG_VIEWS_DIR . "tools/tabs/system-info.php"); |
| 19 | ?> |
| 20 | <?php |
| 21 | require_once(WPSTG_VIEWS_DIR . '_main/footer.php'); |
| 22 | ?> |
| 23 | </div> |
| 24 | |
| 25 |