DesignSettingsImageStyle.php
2 years ago
DesignSettingsLogoPosition.php
2 years ago
DesignSettingsSectionStyle.php
2 years ago
DesignSettingsTextFieldStyle.php
2 years ago
DonationFormErrorTypes.php
2 years ago
DonationFormMetaKeys.php
2 years ago
DonationFormStatus.php
2 years ago
GoalProgressType.php
2 years ago
GoalType.php
2 years ago
RegistrationOptions.php
2 years ago
DesignSettingsTextFieldStyle.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\DonationForms\ValueObjects; |
| 4 | |
| 5 | use Give\Framework\Support\ValueObjects\Enum; |
| 6 | |
| 7 | /** |
| 8 | * @since 3.4.0 |
| 9 | * @method static DesignSettingsTextFieldStyle DEFAULT() |
| 10 | * @method static DesignSettingsTextFieldStyle BOX() |
| 11 | * @method static DesignSettingsTextFieldStyle LINE() |
| 12 | * @method bool isDefault() |
| 13 | * @method bool isBox() |
| 14 | * @method bool isLine() |
| 15 | */ |
| 16 | class DesignSettingsTextFieldStyle extends Enum |
| 17 | { |
| 18 | const DEFAULT = 'default'; |
| 19 | const BOX = 'box'; |
| 20 | const LINE = 'line'; |
| 21 | |
| 22 | } |
| 23 |