PATH:
home
/
letacommog
/
camarsac
/
wp-content
/
plugins
/
jet-engine
/
templates
/
forms
/
fields
<?php /** * input[type="hidden"] template */ $required = $this->get_required_val( $args ); $name = $this->get_field_name( $args['name'] ); $default = ! 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 ) { $checked = checked( $default, $val, false ); } if ( is_array( $option ) && isset( $option['calculate'] ) ) { $calc = ' data-calculate="' . $option['calculate'] . '"'; } $custom_template = false; if ( ! empty( $args['custom_item_template'] ) ) { $custom_template = $this->get_custom_template( $val, $args ); } ?> <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 $name; ?>" class="jet-form__field radio-field checkradio-field" value="<?php echo $val; ?>" data-field-name="<?php echo $args['name']; ?>" <?php echo $checked; ?> <?php echo $required; ?> <?php echo $calc; ?> <?php echo $data_switch; ?> > <?php echo $label; ?> </label> </div> <?php } if ( $custom_template ) { wp_reset_postdata(); wp_reset_query(); } echo '</div>'; }
[+]
..
[-] hidden.php
[edit]
[-] submit.php
[edit]
[-] radio.php
[edit]
[-] wysiwyg.php
[edit]
[-] date.php
[edit]
[-] calculated.php
[edit]
[-] page-break.php
[edit]
[-] time.php
[edit]
[-] heading.php
[edit]
[-] text.php
[edit]
[-] select.php
[edit]
[-] group-break.php
[edit]
[-] media.php
[edit]
[-] datetime-local.php
[edit]
[-] checkboxes.php
[edit]
[-] range.php
[edit]
[-] textarea.php
[edit]
[-] number.php
[edit]