base.html.php
4 years ago
checkbox.html.php
4 years ago
file.html.php
4 years ago
hidden.html.php
4 years ago
html.html.php
4 years ago
label-content.html.php
4 years ago
label.html.php
4 years ago
radio.html.php
4 years ago
select.html.php
4 years ago
textarea.html.php
4 years ago
hidden.html.php
18 lines
| 1 | <?php |
| 2 | /** @var Give\Framework\FieldsAPI\Hidden $field */ ?> |
| 3 | <?php |
| 4 | /** @var string $fieldIdAttribute */ ?> |
| 5 | <input |
| 6 | type="hidden" |
| 7 | name="<?php |
| 8 | echo $field->getName(); ?>" |
| 9 | id="<?php |
| 10 | echo $fieldIdAttribute; ?>" |
| 11 | <?php |
| 12 | if ($value = $field->getDefaultValue()) : ?> |
| 13 | value="<?php |
| 14 | echo esc_attr($value); ?>" |
| 15 | <?php |
| 16 | endif; ?> |
| 17 | /> |
| 18 |