Actions
3 years ago
Concerns
3 years ago
Contracts
3 years ago
Exceptions
3 years ago
Facades
4 years ago
Checkbox.php
3 years ago
Date.php
3 years ago
Element.php
3 years ago
Email.php
3 years ago
Factory.php
4 years ago
Field.php
3 years ago
File.php
3 years ago
Form.php
3 years ago
Group.php
3 years ago
Hidden.php
3 years ago
Html.php
4 years ago
Option.php
3 years ago
Phone.php
3 years ago
Radio.php
3 years ago
Section.php
3 years ago
Select.php
3 years ago
Text.php
3 years ago
Textarea.php
3 years ago
Types.php
4 years ago
Url.php
3 years ago
Select.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Framework\FieldsAPI; |
| 4 | |
| 5 | /** |
| 6 | * @since 2.12.0 |
| 7 | */ |
| 8 | class Select extends Field |
| 9 | { |
| 10 | use Concerns\AllowMultiple; |
| 11 | use Concerns\HasEmailTag; |
| 12 | use Concerns\HasHelpText; |
| 13 | use Concerns\HasLabel; |
| 14 | use Concerns\HasOptions; |
| 15 | use Concerns\HasPlaceholder; |
| 16 | |
| 17 | const TYPE = 'select'; |
| 18 | } |
| 19 |