PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
themes
/
tryo
/
inc
/
classes
<?php /** * Liquid Themes Theme Framework * The Liquid_Admin_Page base class */ if ( !defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class Tryo_admin_page extends Tryo_base { /** * The slug name for the parent menu. * @var string */ public $parent = null; /** * The capability required for this menu to be displayed to the user. * @var string */ public $capability = 'manage_options'; /** * The icon for this menu. * * @var string */ public $icon = 'dashicons-art'; /** * The position in the menu order this menu should appear. * * @var string */ public $position; /** * [__construct description] * @method __construct */ public function __construct() { $priority = -1; if ( isset( $this->parent ) && $this->parent ) { $priority = intval( $this->position ); } $this->position = 2; $this->add_action( 'admin_menu', 'register_page', $priority ); if ( !isset( $_GET['page'] ) || empty( $_GET['page'] ) || ! $this->id === $_GET['page'] ) { return; } if ( method_exists( $this, 'save' ) ) { $this->add_action( 'admin_init', 'save' ); } } /** * [register_page description] * @method register_page * @return [type] [description] */ public function register_page() { if ( ! $this->parent ) { add_menu_page( $this->page_title, $this->menu_title, $this->capability, $this->id, array( $this, 'display' ), get_template_directory_uri() . '/assets/img/favicon.png', $this->position ); } else { add_submenu_page( $this->parent, $this->page_title, $this->menu_title, $this->capability, $this->id, array( $this, 'display' ) ); } } /** * [display description] * @method display * @return [type] [description] */ public function display() { echo 'default'; } }
[+]
..
[-] Tryo_base.php
[edit]
[-] Tryo_rt.php
[edit]
[-] Tryo_admin_page.php
[edit]