1 | <?php |
||
12 | class RegistrationsAdmin extends CoreAdmin |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | const REGISTRATION_STATUS_NOT_APPROVED = 'RNA'; |
||
18 | |||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | const REGISTRATION_STATUS_APPROVED = 'RAP'; |
||
24 | |||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | const REGISTRATION_STATUS_PENDING_PAYMENT = 'RPP'; |
||
30 | |||
31 | |||
32 | |||
33 | /** |
||
34 | * @param string $additional_params |
||
35 | * @return string |
||
36 | */ |
||
37 | public static function registrationsDefaultAdminListTableUrl($additional_params = '') |
||
41 | |||
42 | |||
43 | /** |
||
44 | * Given a registration id, this will return the selector for all the checkbox for that id. |
||
45 | * Assumes the view is a Registration list table. |
||
46 | * @param int $registration_id |
||
47 | * @return string |
||
48 | */ |
||
49 | public static function listTableCheckBoxSelectorForRegistrationId($registration_id) |
||
53 | } |