action-button.php
3 years ago
calculated-field.php
3 years ago
checkbox-field.php
3 years ago
color-picker-field.php
3 years ago
date-field.php
3 years ago
datetime-field.php
3 years ago
form-break-field.php
3 years ago
group-break-field.php
3 years ago
heading-field.php
3 years ago
hidden-field.php
3 years ago
image-preview.php
3 years ago
map-field.php
3 years ago
media-field.php
3 years ago
number-field.php
3 years ago
preset-media-field.php
3 years ago
progress-bar.php
3 years ago
radio-field.php
3 years ago
range-field.php
3 years ago
select-field.php
3 years ago
text-field.php
3 years ago
textarea-field.php
3 years ago
time-field.php
3 years ago
wysiwyg-field.php
3 years ago
preset-media-field.php
15 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @var Media_Field_Render $this |
| 4 | * @var array $file |
| 5 | */ |
| 6 | |
| 7 | use Jet_Form_Builder\Blocks\Render\Media_Field_Render; |
| 8 | use Jet_Form_Builder\Classes\Tools; |
| 9 | |
| 10 | ?> |
| 11 | <input class="jet-form-builder-file-upload__value" |
| 12 | type="hidden" |
| 13 | name="<?php echo esc_attr( $this->block_type->get_field_name() ); ?>" |
| 14 | value="<?php echo esc_attr( Tools::encode_json( $file ) ); ?>" |
| 15 | /> |