index.php
24 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 | |
| 15 | <div class="wpstg-tabs-container" id="wpstg-tools"> |
| 16 | <div class="wpstg-metabox-holder"> |
| 17 | <?php require_once($this->path . "views/tools/tabs/system-info.php") ?> |
| 18 | </div> |
| 19 | </div> |
| 20 | </div> |
| 21 | <?php |
| 22 | require_once(WPSTG_PLUGIN_DIR . 'Backend/views/_main/footer.php'); |
| 23 | ?> |
| 24 |