'setting_id', // Unique id * 'title' => 'My Setting', // Title or label for the setting * 'description' => 'Description', // Help text description * 'label' => 'Label', // Checkbox label text * ); * ); * * @since 1.0 * @package Simple Admin Pages */ class sapAdminPageSettingToggle_2_7_4 extends sapAdminPageSetting_2_7_4 { public $sanitize_callback = 'sanitize_text_field'; /** * Display this setting * @since 1.0 */ public function display_setting() { $input_name = $this->get_input_name(); if ( ! isset( $this->value ) ) { $this->value = $this->get_default_setting(); } ?>
print_conditional_data(); ?>>
value == '1' ) : ?> checked="checked" disabled ? 'disabled' : ''); ?> print_conditional_data(); ?>>
display_disabled(); ?>
display_description(); } }