| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Obnboarding admin page. |
| 5 |
*/ |
| 6 |
|
| 7 |
namespace Extendify\Launch; |
| 8 |
|
| 9 |
defined('ABSPATH') || die('No direct access.'); |
| 10 |
|
| 11 |
/** |
| 12 |
* This class handles the Assist admin page. |
| 13 |
*/ |
| 14 |
|
| 15 |
class AdminPage |
| 16 |
{ |
| 17 |
/** |
| 18 |
* The admin page slug |
| 19 |
* |
| 20 |
* @var $string |
| 21 |
*/ |
| 22 |
public $slug = 'extendify-launch'; |
| 23 |
|
| 24 |
/** |
| 25 |
* Adds various actions to set up the page |
| 26 |
* |
| 27 |
* @return void |
| 28 |
*/ |
| 29 |
public function __construct() |
| 30 |
{ |
| 31 |
} |
| 32 |
|
| 33 |
/** |
| 34 |
* Settings page output |
| 35 |
* |
| 36 |
* @since 1.0.0 |
| 37 |
* |
| 38 |
* @return void |
| 39 |
*/ |
| 40 |
public function pageContent() |
| 41 |
{ |
| 42 |
?> |
| 43 |
<div |
| 44 |
id="extendify-launch-page" |
| 45 |
class="extendify-launch" |
| 46 |
style="position:fixed;background:white;top:0;left:0;right:0;bottom:0;z-index:99999"> |
| 47 |
</div> |
| 48 |
<?php |
| 49 |
} |
| 50 |
} |
| 51 |
|