PluginProbe
Sky Addons for Elementor / trunk
Sky Addons for Elementor vtrunk
4.0.0 3.8.5 3.8.4 3.8.3 3.8.2 3.8.0 3.8.1 3.3.3 3.3.2 trunk 1.0.0 1.0.10 1.0.2 1.0.6 1.0.7 1.0.8 1.0.9 1.5.0 2.0.0 2.0.8 2.5.10 2.5.11 2.5.12 2.5.13 2.5.15 All 53 releases
sky-elementor-addons / includes / admin / class-admin.php

class-admin.php in Sky Addons for Elementor trunk, at includes/admin/class-admin.php

37 lines 444 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Admin class
4 *
5 * @package Sky_Addons
6 * @since 2.7.0
7 */
8
9 namespace Sky_Addons;
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit;
13 }
14
15 /**
16 * Description of Menu
17 *
18 * @since 2.7.0
19 */
20
21 class Admin {
22 public function __construct() {
23 $this->dispatch_actions();
24 new Admin\Menu();
25 }
26
27 /**
28 * Dispatch Actions
29 *
30 * @since 1.0.0
31 */
32 public function dispatch_actions() {
33 new Classes\Dashboard();
34 new Classes\Widgets_Settings();
35 }
36 }
37