DonationFormMetaKeys.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\DonationForms\ValueObjects; |
| 4 | |
| 5 | use Give\Framework\Support\ValueObjects\Enum; |
| 6 | |
| 7 | /** |
| 8 | * Donation Form Meta keys |
| 9 | * |
| 10 | * @since 2.21.0 |
| 11 | * |
| 12 | * @method static DonationFormMetaKeys FORM_EARNINGS() |
| 13 | * @method static DonationFormMetaKeys DONATION_LEVELS() |
| 14 | * @method static DonationFormMetaKeys SET_PRICE() |
| 15 | * @method static DonationFormMetaKeys GOAL_OPTION() |
| 16 | */ |
| 17 | class DonationFormMetaKeys extends Enum |
| 18 | { |
| 19 | const FORM_EARNINGS = '_give_form_earnings'; |
| 20 | const DONATION_LEVELS = '_give_donation_levels'; |
| 21 | const SET_PRICE = '_give_set_price'; |
| 22 | const GOAL_OPTION = '_give_goal_option'; |
| 23 | } |
| 24 |