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
textarea.html.php
13 lines
| 1 | <?php /** @var Give\Framework\FieldsAPI\Textarea $field */ ?> |
| 2 | <?php /** @var string $fieldIdAttribute */ ?> |
| 3 | <?php /** @var string $visibilityConditionsAttribute */ ?> |
| 4 | |
| 5 | <textarea |
| 6 | name="<?php echo $field->getName(); ?>" |
| 7 | id="<?php echo $fieldIdAttribute; ?>" |
| 8 | <?php echo $field->isRequired() ? 'required' : ''; ?> |
| 9 | <?php echo $field->isReadOnly() ? 'readonly' : ''; ?> |
| 10 | <?php echo ( $maxLength = $field->getMaxLength() ) ? "maxlength=\"$maxLength\"" : ''; ?> |
| 11 | <?php echo $visibilityConditionsAttribute ?> |
| 12 | ></textarea> |
| 13 |