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