HEX
Server: LiteSpeed
System: Linux cde4.duelhost.dk 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User: xluilhul (1144)
PHP: 8.2.30
Disabled: exec,system,passthru,shell_exec,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/xluilhul/public_html/wp-content/plugins/jet-engine/templates/forms/fields/radio.php
<?php
/**
 * input[type="hidden"] template
 */

$required    = $this->get_required_val( $args );
$name        = $this->get_field_name( $args['name'] );
$default     = ! Jet_Engine_Tools::is_empty( $args['default'] ) ? $args['default'] : false;
$data_switch = '';

if ( $required ) {
	$required = 'required="required"';
}

if ( ! empty( $args['switch_on_change'] ) ) {
	$data_switch = ' data-switch="1"';
}

if ( ! empty( $args['field_options'] ) ) {

	echo '<div class="jet-form__fields-group checkradio-wrap">';

	foreach ( $args['field_options'] as $value => $option ) {

		$checked = '';
		$calc    = '';

		if ( is_array( $option ) ) {
			$val   = isset( $option['value'] ) ? $option['value'] : $value;
			$label = isset( $option['label'] ) ? $option['label'] : $val;
		} else {
			$val   = $value;
			$label = $option;
		}

		if ( $default || '0' === $default ) {
			$checked = checked( $default, $val, false );
		}

		if ( is_array( $option ) && isset( $option['calculate'] ) ) {
			$calc = ' data-calculate="' . esc_attr( $option['calculate'] ) . '"';
		}

		$custom_template = false;

		if ( ! empty( $args['custom_item_template'] ) ) {
			$custom_template = $this->get_custom_template( $val, $args, $checked );
		}

		?>
		<div class="jet-form__field-wrap radio-wrap checkradio-wrap">
			<?php if ( $custom_template ) {
				echo $custom_template;
			} ?>
			<label class="jet-form__field-label">
				<input
					type="radio"
					name="<?php echo esc_attr( $name ); ?>"
					class="jet-form__field radio-field checkradio-field"
					value="<?php echo esc_attr( $val ); ?>"
					data-field-name="<?php echo esc_attr( $args['name'] ); ?>"
					<?php echo $checked; ?>
					<?php echo $required; ?>
					<?php echo $calc ? wp_kses_post( $calc ) : ''; ?>
					<?php echo $data_switch ? wp_kses_post( $data_switch ) : ''; ?>
				>
				<?php echo esc_html( $label ); ?>
			</label>
		</div>
		<?php

	}

	if ( $custom_template ) {
		wp_reset_postdata();
		wp_reset_query();
	}

	echo '</div>';

}