1 | <?php |
||
17 | class Skeleton extends Module |
||
18 | { |
||
19 | |||
20 | public function __construct() |
||
24 | |||
25 | /** |
||
26 | * Module info |
||
27 | * @return array |
||
28 | */ |
||
29 | public function info() |
||
39 | |||
40 | /** |
||
41 | * Implements hook "route.list" |
||
42 | * @param array $routes |
||
43 | */ |
||
44 | public function hookRouteList(array &$routes) |
||
53 | |||
54 | /** |
||
55 | * Implements hook "job.handlers" |
||
56 | * @param array $handlers |
||
57 | */ |
||
58 | public function hookJobHandlers(array &$handlers) |
||
66 | |||
67 | /** |
||
68 | * Implements hook "validator.handlers" |
||
69 | * @param array $handlers |
||
70 | */ |
||
71 | public function hookValidatorHandlers(array &$handlers) |
||
79 | |||
80 | /** |
||
81 | * Implements hook "cron" |
||
82 | */ |
||
83 | public function hookCron() |
||
92 | |||
93 | } |
||
94 |