Endpoint.php
3 years ago
ListSubscriptions.php
3 years ago
SubscriptionActions.php
3 years ago
SwitchSubscriptionView.php
3 years ago
SwitchSubscriptionView.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Subscriptions\Endpoints; |
| 4 | |
| 5 | use Give\Donations\Endpoints\SwitchDonationView; |
| 6 | |
| 7 | class SwitchSubscriptionView extends SwitchDonationView |
| 8 | { |
| 9 | /** |
| 10 | * @inheritDoc |
| 11 | */ |
| 12 | protected $endpoint = 'admin/subscriptions/view'; |
| 13 | |
| 14 | /** |
| 15 | * @inheritDoc |
| 16 | */ |
| 17 | protected $slug = 'subscriptions'; |
| 18 | } |
| 19 |