This commit is contained in:
KhaiNguyen
2020-02-13 10:39:37 +07:00
commit 59401cb805
12867 changed files with 4646216 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
/**
* KeyDesign Theme Admin Panel
* The KeyDesign_Admin_Dashboard base class
*/
if( !defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class KeyDesign_Admin_Dashboard extends KeyDesign_Admin_Page {
public function __construct() {
$this->id = 'ekko-dashboard';
$this->page_title = 'Ekko Dashboard';
$this->menu_title = 'Ekko';
$this->position = '50';
parent::__construct();
}
public function display() {
include_once( plugin_dir_path( __FILE__ ).'views/keydesign-dashboard.php' );
}
}
new KeyDesign_Admin_Dashboard;