1 | <?php |
||
17 | class Module |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Implements hook "module.install.before" |
||
22 | * @param null|string $result |
||
23 | */ |
||
24 | public function hookModuleInstallBefore(&$result) |
||
30 | |||
31 | /** |
||
32 | * Implements hook "route.list" |
||
33 | * @param array $routes |
||
34 | */ |
||
35 | public function hookRouteList(array &$routes) |
||
52 | |||
53 | /** |
||
54 | * Implements hook "user.permissions" |
||
55 | * @param array $permissions |
||
56 | */ |
||
57 | public function hookUserPermissions(array &$permissions) |
||
62 | |||
63 | /** |
||
64 | * Implements hook "job.handlers" |
||
65 | * @param array $handlers |
||
66 | */ |
||
67 | public function hookJobHandlers(array &$handlers) |
||
75 | |||
76 | /** |
||
77 | * Implements hook "hook.cron" |
||
78 | */ |
||
79 | public function hookCron() |
||
83 | |||
84 | /** |
||
85 | * Translation UI model class instance |
||
86 | * @return \gplcart\core\models\Translation |
||
87 | */ |
||
88 | protected function getTranslationModel() |
||
92 | |||
93 | } |
||
94 |