🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 09:09:24 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
reenrihair.com
/
wp-content
/
plugins
/
mobile-menu
/
includes
/
plugin-settings
/
lib
📍 /home/therahul/reenrihair.com/wp-content/plugins/mobile-menu/includes/plugin-settings/lib
🔄 Refresh
✏️
Editing: class-option-custom.php
Writable
<?php /** * Custom option * * @package Mobile Menu Settings */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Custom option class * * @since 1.0 */ class MobileMenuOptionCustom extends MobileMenuOption { /** * Default settings specific to this option * @var array */ public $defaultSecondarySettings = array( 'custom' => '', // Custom HTML ); /** * Display for options and meta */ public function display() { if ( ! empty( $this->settings['name'] ) ) { $this->echoOptionHeader(); echo $this->settings['custom']; $this->echoOptionFooter( false ); } else { $this->echoOptionHeaderBare(); echo $this->settings['custom']; $this->echoOptionFooterBare( false ); } } }
💾 Save Changes
❌ Cancel