🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 14:57:59 | 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: AdminPageSetting.SelectMenu.class.php
Writable
<?php /** * Register, display and save a selection with a drop-down list of any post type * * This setting accepts the following arguments in its constructor function. * * $args = array( * 'id' => 'setting_id', // Unique id * 'title' => 'My Setting', // Title or label for the setting * 'description' => 'Description', // Help text description * 'blank_option' => true, // Whether or not to show a blank option * 'args' => array(); // Arguments to pass to WordPress's get_post() function * ); * * @since 1.0 * @package Simple Admin Pages */ class sapAdminPageSettingSelectMenu_2_7_4 extends sapAdminPageSetting_2_7_4 { public $sanitize_callback = 'intval'; // Whether or not to display a blank option public $blank_option = true; /** * An array of arguments accepted by get_posts(). * See: http://codex.wordpress.org/Template_Tags/get_posts */ public $args = array(); /** * Display this setting * @since 1.0 */ public function display_setting() { $args = array( 'taxonomy' =>'nav_menu', 'hide_empty' => true, ); $menus = get_terms( $args ); ?> <fieldset <?php $this->print_conditional_data(); ?>> <select name="<?php echo esc_attr( $this->get_input_name() ); ?>" id="<?php echo esc_attr( $this->get_input_name() ); ?>"> <?php if ( $this->blank_option === true ) : ?> <option></option> <?php endif; ?> <?php foreach($menus as $menu){ ?> <option value="<?php echo absint( $menu->term_id ); ?>" <?php selected( $this->value, $menu->term_id ); ?>><?php echo esc_attr( $menu->name ); ?></option> <?php } ?> </select> </fieldset> <?php $this->display_description(); } }
💾 Save Changes
❌ Cancel