📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 10:25:51
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
inc
/
admin
✏️
Editing: admin-dashboard.php
<?php /** * The Berich_Admin_Dashboard base class */ if( !defined( 'ABSPATH' ) ) exit; class Berich_Admin_Dashboard extends Berich_Admin_Page { public function __construct() { $this->id = 'pxlart'; $this->page_title = berich()->get_name(); $this->menu_title = berich()->get_name(); $this->position = '50'; parent::__construct(); } public function display() { include_once( get_template_directory() . '/inc/admin/views/admin-dashboard.php' ); } public function save() { } } new Berich_Admin_Dashboard;
💾 Save Changes
❌ Cancel