🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 11:22:02 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
ultimate-faqs
/
lib
/
simple-admin-pages
/
classes
📍 /home/eliteewa/public_html/wp-content/plugins/ultimate-faqs/lib/simple-admin-pages/classes
🔄 Refresh
✏️
Editing: AdminPage.Menu.class.php
Writable
<?php /** * Register, display and save an settings page as a submenu item in the * WordPress admin menu. * * @since 1.1 * @package Simple Admin Pages */ class sapAdminPageMenu_2_7_4 extends sapAdminPage_2_7_4 { public $default_tab; // which menu tab to option on page load, if none selected public $position; // what priority should be entered for the page public $icon; // which icon should be associated with the page in the sidebar public $setup_function = 'add_menu_page'; // WP function to register the page /** * Add the page to the appropriate menu slot. * @since 1.0 */ public function add_admin_menu() { call_user_func( $this->setup_function, $this->title, $this->menu_title, $this->capability, $this->id, array( $this, 'display_admin_menu' ), $this->icon, $this->position ); } }
💾 Save Changes
❌ Cancel