1 | <?php |
||
17 | class Attendee extends AttendeeCalculationsBase |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * @param array $wpdb_row |
||
22 | * @param WP_REST_Request $request |
||
23 | * @param AttendeeControllerBase $controller |
||
24 | * @since 4.9.66.p |
||
25 | * @return string |
||
26 | */ |
||
27 | public function userAvatar(array $wpdb_row, WP_REST_Request $request, AttendeeControllerBase $controller) |
||
38 | |||
39 | |||
40 | /** |
||
41 | * Provides an array for all the calculations possible that outlines a json schema for those calculations. |
||
42 | * Array is indexed by calculation (snake case) and value is the schema for that calculation. |
||
43 | * |
||
44 | * @since $VID:$ |
||
45 | * @return array |
||
46 | */ |
||
47 | public function schemaForCalculations() |
||
59 | } |
||
60 |