1 | <?php |
||
17 | class Dev 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 "construct" |
||
40 | */ |
||
41 | public function hookConstruct() |
||
45 | |||
46 | /** |
||
47 | * Implements hook "construct.controller" |
||
48 | * @param \gplcart\core\Controller $controller |
||
49 | */ |
||
50 | public function hookConstructController($controller) |
||
60 | |||
61 | /** |
||
62 | * Implements hook "template.output" |
||
63 | * @param string $html |
||
64 | * @param \gplcart\core\Controller $controller |
||
65 | */ |
||
66 | public function hookTemplateOutput(&$html, $controller) |
||
82 | |||
83 | /** |
||
84 | * Implements hook "library.list" |
||
85 | * @param array $libraries |
||
86 | */ |
||
87 | public function hookLibraryList(array &$libraries) |
||
102 | |||
103 | /** |
||
104 | * Implements hook "route.list" |
||
105 | * @param array $routes |
||
106 | */ |
||
107 | public function hookRouteList(array &$routes) |
||
116 | |||
117 | /** |
||
118 | * Implements hook "module.enable.after" |
||
119 | */ |
||
120 | public function hookModuleEnableAfter() |
||
124 | |||
125 | /** |
||
126 | * Implements hook "module.disable.after" |
||
127 | */ |
||
128 | public function hookModuleDisableAfter() |
||
132 | |||
133 | /** |
||
134 | * Implements hook "module.install.after" |
||
135 | */ |
||
136 | public function hookModuleInstallAfter() |
||
140 | |||
141 | /** |
||
142 | * Implements hook "module.uninstall.after" |
||
143 | */ |
||
144 | public function hookModuleUninstallAfter() |
||
148 | |||
149 | /** |
||
150 | * Returns a path to Kint's init file |
||
151 | * @return string |
||
152 | */ |
||
153 | protected function getKintFile() |
||
157 | |||
158 | } |
||
159 |