1 | <?php |
||
17 | class Main |
||
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) |
||
44 | |||
45 | /** |
||
46 | * Implements hook "job.handlers" |
||
47 | * @param array $handlers |
||
48 | */ |
||
49 | public function hookJobHandlers(array &$handlers) |
||
57 | |||
58 | /** |
||
59 | * Implements hook "validator.handlers" |
||
60 | * @param array $handlers |
||
61 | */ |
||
62 | public function hookValidatorHandlers(array &$handlers) |
||
70 | |||
71 | /** |
||
72 | * Implements hook "cron" |
||
73 | */ |
||
74 | public function hookCron() |
||
78 | |||
79 | /** |
||
80 | * Translation UI model class instance |
||
81 | * @return \gplcart\core\models\Translation |
||
82 | */ |
||
83 | protected function getTranslationModel() |
||
87 | |||
88 | } |
||
89 |