PluginProbe
Extendify / 2.2.0
Extendify v2.2.0
3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 0.7.0 All 126 releases
extendify / app / Launch / AdminPage.php

AdminPage.php in Extendify 2.2.0, at app/Launch/AdminPage.php

51 lines 832 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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