1 | <?php |
||
15 | class Main |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * Implements hook "route.list" |
||
20 | * @param array $routes |
||
21 | */ |
||
22 | public function hookRouteList(array &$routes) |
||
41 | |||
42 | /** |
||
43 | * Implements hook "job.handlers" |
||
44 | * @param array $handlers |
||
45 | */ |
||
46 | public function hookJobHandlers(array &$handlers) |
||
54 | |||
55 | /** |
||
56 | * Implements hook "user.role.permissions" |
||
57 | * @param array $permissions |
||
58 | */ |
||
59 | public function hookUserRolePermissions(array &$permissions) |
||
63 | |||
64 | /** |
||
65 | * Implements hook "cron.run.after" |
||
66 | */ |
||
67 | public function hookCronRunAfter() |
||
71 | |||
72 | } |
||
73 |