1 | <?php |
||
17 | class Installer extends Module |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Constructor |
||
22 | */ |
||
23 | public function __construct() |
||
27 | |||
28 | /** |
||
29 | * Implements hook "module.install.before" |
||
30 | */ |
||
31 | public function hookModuleInstallBefore(&$result) |
||
37 | |||
38 | /** |
||
39 | * Implements hook "route.list" |
||
40 | * @param array $routes |
||
41 | */ |
||
42 | public function hookRouteList(array &$routes) |
||
59 | |||
60 | /** |
||
61 | * Implements hook "user.permissions" |
||
62 | * @param array $permissions |
||
63 | */ |
||
64 | public function hookUserPermissions(array &$permissions) |
||
69 | |||
70 | /** |
||
71 | * Implements hook "job.handlers" |
||
72 | * @param array $handlers |
||
73 | */ |
||
74 | public function hookJobHandlers(array &$handlers) |
||
82 | |||
83 | /** |
||
84 | * Implements hook "hook.cron" |
||
85 | */ |
||
86 | public function hookCron() |
||
93 | |||
94 | } |
||
95 |