1 | <?php |
||
21 | class Module |
||
22 | { |
||
23 | /** |
||
24 | * Gets the configuration for this module. |
||
25 | * |
||
26 | * @return array |
||
27 | */ |
||
28 | public function getConfig() |
||
32 | |||
33 | /** |
||
34 | * Initializes the module. |
||
35 | * |
||
36 | * @param ModuleManagerInterface $moduleManager |
||
37 | */ |
||
38 | public function init(ModuleManagerInterface $moduleManager) |
||
43 | |||
44 | /** |
||
45 | * Called when the modules are loaded. |
||
46 | * |
||
47 | * @param ModuleEvent $event |
||
48 | */ |
||
49 | public function onLoadModulesPost(ModuleEvent $event) |
||
58 | } |
||
59 |