📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 11:52:38
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
inc
/
admin
✏️
Editing: admin-import.php
<?php /** * The Berich_Admin_Import class */ if( !defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class Berich_Admin_Import extends Berich_Admin_Page { public function __construct() { $this->id = 'pxlart-import-demos'; $this->page_title = esc_html__( 'Import Demos', 'berich' ); $this->menu_title = esc_html__( 'Import Demos', 'berich' ); $this->parent = 'pxlart'; //$this->position = '10'; parent::__construct(); } public function display() { include_once( get_template_directory() . '/inc/admin/views/admin-demos.php' ); } public function save() { } } new Berich_Admin_Import;
💾 Save Changes
❌ Cancel