1 | <?php |
||
15 | class Module |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * Implements hook "route.list" |
||
20 | * @param array $routes |
||
21 | */ |
||
22 | public function hookRouteList(array &$routes) |
||
39 | |||
40 | /** |
||
41 | * Implements hook "job.handlers" |
||
42 | * @param array $handlers |
||
43 | */ |
||
44 | public function hookJobHandlers(array &$handlers) |
||
52 | |||
53 | /** |
||
54 | * Implements hook "user.role.permissions" |
||
55 | * @param array $permissions |
||
56 | */ |
||
57 | public function hookUserRolePermissions(array &$permissions) |
||
61 | |||
62 | /** |
||
63 | * Implements hook "cron" |
||
64 | */ |
||
65 | public function hookCron() |
||
69 | |||
70 | } |
||
71 |