1 | <?php |
||
17 | class Skeleton extends Module |
||
18 | { |
||
19 | |||
20 | public function __construct() |
||
24 | |||
25 | /** |
||
26 | * Implements hook "route.list" |
||
27 | * @param array $routes |
||
28 | */ |
||
29 | public function hookRouteList(array &$routes) |
||
38 | |||
39 | /** |
||
40 | * Implements hook "job.handlers" |
||
41 | * @param array $handlers |
||
42 | */ |
||
43 | public function hookJobHandlers(array &$handlers) |
||
51 | |||
52 | /** |
||
53 | * Implements hook "validator.handlers" |
||
54 | * @param array $handlers |
||
55 | */ |
||
56 | public function hookValidatorHandlers(array &$handlers) |
||
64 | |||
65 | /** |
||
66 | * Implements hook "cron" |
||
67 | */ |
||
68 | public function hookCron() |
||
77 | |||
78 | } |
||
79 |