CampaignGoalType.php
1 year ago
CampaignPageMetaKeys.php
1 year ago
CampaignPageStatus.php
5 months ago
CampaignStatus.php
1 year ago
CampaignType.php
1 year ago
CampaignPageMetaKeys.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Campaigns\ValueObjects; |
| 4 | |
| 5 | use Give\Framework\Support\ValueObjects\Enum; |
| 6 | use Give\Framework\Support\ValueObjects\EnumInteractsWithQueryBuilder; |
| 7 | |
| 8 | /** |
| 9 | * @since 4.0.0 |
| 10 | * |
| 11 | * @method static CampaignPageMetaKeys CAMPAIGN_ID() |
| 12 | */ |
| 13 | class CampaignPageMetaKeys extends Enum |
| 14 | { |
| 15 | use EnumInteractsWithQueryBuilder; |
| 16 | |
| 17 | public const CAMPAIGN_ID = 'give_campaign_id'; |
| 18 | } |
| 19 |