🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 09:08:44 | 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-iframe.php
Writable
<?php /** * Iframe option * * @package Mobile Menu Settings */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Iframe option class * * @since 1.0 */ class MobileMenuOptionIframe extends MobileMenuOption { /** * Default settings specific to this option * @var array */ public $defaultSecondarySettings = array( 'url' => '', 'height' => '400', // In pixels. ); /** * Display for options and meta */ public function display() { $this->echoOptionHeader(); printf( '<iframe frameborder="0" src="%s" style="height: %spx; width:100%%;"></iframe>', $this->settings['url'], $this->settings['height'] ); $this->echoOptionFooter(); } }
💾 Save Changes
❌ Cancel