PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
themes
/
tryo
/
inc
/
admin
/
dashboard
<?php if ( !defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class Tryo_admin_dashboard extends Tryo_admin_page { /** * [__construct description] * @method __construct */ public function __construct() { $this->id = 'tryo'; $this->page_title = esc_html__( 'Tryo Dashboard', 'tryo' ); $this->menu_title = esc_html__( 'Register Tryo', 'tryo' ); $this->position = '50'; parent::__construct(); } /** * [display description] * @method display * @return [type] [description] */ public function display() { include_once( get_template_directory() . '/inc/admin/dashboard/dashboard.php' ); } /** * [save description] * @method save * @return [type] [description] */ public function save() { } } new Tryo_admin_dashboard;
[+]
..
[-] Tryo_admin_dashboard.php
[edit]
[-] dashboard.php
[edit]