calculated-field.php
4 years ago
checkbox-field.php
4 years ago
date-field.php
4 years ago
datetime-field.php
4 years ago
form-break-field.php
4 years ago
group-break-field.php
4 years ago
heading-field.php
4 years ago
hidden-field.php
4 years ago
media-field.php
4 years ago
number-field.php
4 years ago
radio-field.php
4 years ago
range-field.php
4 years ago
select-field.php
4 years ago
submit-field.php
4 years ago
text-field.php
4 years ago
textarea-field.php
4 years ago
time-field.php
4 years ago
wysiwyg-field.php
4 years ago
hidden-field.php
9 lines
| 1 | <?php |
| 2 | /** |
| 3 | * input[type="hidden"] template |
| 4 | */ |
| 5 | $this->add_attribute( 'class', 'jet-form-builder__field hidden-field' ); |
| 6 | $this->add_attribute( 'class', $args['class_name'] ); |
| 7 | |
| 8 | ?> |
| 9 | <input <?php $this->render_attributes_string(); ?> type="hidden" name="<?php echo $this->block_type->get_field_name( $args['name'] ); ?>" value="<?php echo $args['field_value']; ?>" data-field-name="<?php echo $args['name']; ?>"> |