🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 14:04:21 | 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.Password.class.php
Writable
<?php /** * Register, display and save a password field setting in the admin menu * * @since 2.6.8 * @package Simple Admin Pages */ class sapAdminPageSettingPassword_2_7_4 extends sapAdminPageSetting_2_7_4 { public $sanitize_callback = 'sanitize_text_field'; /** * Placeholder string for the input field * @since 2.6.8 */ public $placeholder = ''; /** * Display this setting * @since 2.6.8 */ public function display_setting() { ?> <fieldset <?php $this->print_conditional_data(); ?>> <input name="<?php echo esc_attr( $this->get_input_name() ); ?>" type="password" id="<?php echo esc_attr( $this->get_input_name() ); ?>" value="<?php echo esc_attr( $this->value ); ?>"<?php echo !empty( $this->placeholder ) ? ' placeholder="' . esc_attr( $this->placeholder ) . '"' : ''; ?> class="regular-text <?php echo ( $this->small ? 'sap-small-text-input' : '' ); ?>" <?php echo ( $this->disabled ? 'disabled' : ''); ?> /> <?php $this->display_disabled(); ?> </fieldset> <?php $this->display_description(); } }
💾 Save Changes
❌ Cancel