26 lines
551 B
PHP
26 lines
551 B
PHP
<?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;
|