FieldAttributes.php
5 years ago
FieldDefaultValue.php
5 years ago
FieldEmailTag.php
5 years ago
FieldHelpText.php
5 years ago
FieldLabel.php
5 years ago
FieldOptions.php
5 years ago
FieldReadOnly.php
5 years ago
FieldReceipt.php
5 years ago
FieldRequired.php
5 years ago
FieldStoreAsMeta.php
5 years ago
FieldTypes.php
5 years ago
FieldAttributes.php
34 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Framework\FieldsAPI\FormField; |
| 4 | |
| 5 | /** |
| 6 | * @since 2.10.2 |
| 7 | */ |
| 8 | trait FieldAttributes { |
| 9 | |
| 10 | /** |
| 11 | * @since 2.10.2 |
| 12 | * @var array |
| 13 | */ |
| 14 | protected $attributes = []; |
| 15 | |
| 16 | /** |
| 17 | * @since 2.10.2 |
| 18 | * @param array $attributes |
| 19 | * @return $this |
| 20 | */ |
| 21 | public function attributes( $attributes ) { |
| 22 | $this->attributes = $attributes; |
| 23 | return $this; |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * @since 2.10.2 |
| 28 | * @return array |
| 29 | */ |
| 30 | public function getAttributes() { |
| 31 | return $this->attributes; |
| 32 | } |
| 33 | } |
| 34 |