1 | <?php |
||
13 | class Admin { |
||
14 | |||
15 | /** |
||
16 | * Construction. |
||
17 | */ |
||
18 | public function __construct() { |
||
22 | |||
23 | /** |
||
24 | * Initialize the UI. |
||
25 | */ |
||
26 | public static function init() { |
||
34 | |||
35 | /** |
||
36 | * Register's submenu. |
||
37 | */ |
||
38 | public function register_submenu_page() { |
||
49 | |||
50 | /** |
||
51 | * Enqueue scripts! |
||
52 | * |
||
53 | * @param string $hook Page hook. |
||
54 | */ |
||
55 | public function enqueue_scripts( $hook ) { |
||
64 | |||
65 | /** |
||
66 | * Render UI. |
||
67 | */ |
||
68 | public function render_ui() { |
||
73 | |||
74 | /** |
||
75 | * Return the rendered initial state JavaScript code. |
||
76 | * |
||
77 | * @return string |
||
78 | */ |
||
79 | private function get_initial_state() { |
||
82 | |||
83 | } |
||
84 |