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
DonationFormsRoute.php
1 year ago
GoalProgressType.php
2 years ago
GoalSource.php
1 year ago
GoalType.php
2 years ago
RegistrationOptions.php
2 years ago
GoalSource.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\DonationForms\ValueObjects; |
| 4 | |
| 5 | use Give\Framework\Support\ValueObjects\Enum; |
| 6 | |
| 7 | /** |
| 8 | * @since 4.1.0 |
| 9 | * |
| 10 | * @method static GoalSource CAMPAIGN() |
| 11 | * @method static GoalSource FORM() |
| 12 | * @method bool isCampaign() |
| 13 | * @method bool isForm() |
| 14 | */ |
| 15 | class GoalSource extends Enum |
| 16 | { |
| 17 | const CAMPAIGN = 'campaign'; |
| 18 | const FORM = 'form'; |
| 19 | } |
| 20 |