base.html.php
4 years ago
checkbox.html.php
4 years ago
file.html.php
4 years ago
hidden.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
textarea.html.php
11 lines
| 1 | <?php /** @var Give\Framework\FieldsAPI\Textarea $field */ ?> |
| 2 | <?php /** @var string $classAttribute */ ?> |
| 3 | <textarea |
| 4 | class="<?php echo $classAttribute; ?>" |
| 5 | name="give_<?php echo $field->getName(); ?>" |
| 6 | id="give-<?php echo $field->getName(); ?>" |
| 7 | <?php if ( $field->isRequired() ) : ?> |
| 8 | required |
| 9 | <?php endif; ?> |
| 10 | ></textarea> |
| 11 |