index.php
30 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_PLUGIN_DIR . 'Backend/views/_main/header.php'); |
| 10 | |
| 11 | $isActiveSystemInfoPage = true; |
| 12 | require_once(WPSTG_PLUGIN_DIR . 'Backend/views/_main/main-navigation.php'); |
| 13 | ?> |
| 14 | <div class="wpstg-loading-bar-container"> |
| 15 | <div class="wpstg-loading-bar"></div> |
| 16 | </div> |
| 17 | <div class="wpstg-tabs-container" id="wpstg-tools"> |
| 18 | <div class="wpstg-metabox-holder"> |
| 19 | <?php |
| 20 | $numberOfLoadingBars = 100; |
| 21 | include(WPSTG_PLUGIN_DIR . 'Backend/views/_main/loading-placeholder.php'); |
| 22 | require_once($this->path . "views/tools/tabs/system-info.php"); |
| 23 | ?> |
| 24 | </div> |
| 25 | </div> |
| 26 | </div> |
| 27 | <?php |
| 28 | require_once(WPSTG_PLUGIN_DIR . 'Backend/views/_main/footer.php'); |
| 29 | ?> |
| 30 |