🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 14:59:10 | 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.Radio.class.php
Writable
<?php /** * Register, display and save an option with radio buttons. * * 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 * 'options' => array( * 'value' => 'Name' * ), // The radio buttons values and text * ); * ); * * @since 2.0 * @package Simple Admin Pages */ class sapAdminPageSettingRadio_2_7_4 extends sapAdminPageSetting_2_7_4 { public $sanitize_callback = 'sanitize_text_field'; /** * Display this setting * @since 2.0 */ public function display_setting() { $input_name = $this->get_input_name(); if ( empty( $this->value ) ) { $this->value = $this->get_default_setting(); } ?> <fieldset <?php echo ( isset( $this->columns ) ? 'class="sap-setting-columns-' . esc_attr( $this->columns ) . '"' : '' ); ?> <?php $this->print_conditional_data(); ?>> <?php foreach ( $this->options as $id => $title ) : ?> <label title="<?php echo ( strpos( $title, '<' ) === false ? esc_attr( $title ) : ''); ?>" class="sap-admin-input-container"> <input type="radio" name="<?php echo esc_attr( $input_name ); ?>" id="<?php echo esc_attr( $input_name . "-" . $id ); ?>" value="<?php echo esc_attr( $id ); ?>" <?php echo ( $id == $this->value ? 'checked="checked"' : '' ) ?> <?php echo ( $this->disabled ? 'disabled' : ''); ?> /> <span class='sap-admin-radio-button'></span> <span><?php echo wp_kses_post( $title ); ?></span> </label> <?php endforeach; ?> <?php $this->display_disabled(); ?> </fieldset> <?php $this->display_description(); } }
💾 Save Changes
❌ Cancel