1 | <?php |
||
22 | class Module implements ConfigProviderInterface, InitProviderInterface |
||
23 | { |
||
24 | const CONFIG_KEY = 'goaop_module'; |
||
25 | const ASPECT_CONFIG_KEY = 'goaop_aspect'; |
||
26 | |||
27 | /** |
||
28 | * @inheritDoc |
||
29 | */ |
||
30 | public function init(ModuleManagerInterface $manager) |
||
37 | |||
38 | /** |
||
39 | * Register aspects after all modules are loaded. |
||
40 | * |
||
41 | * @param ModuleEvent $e |
||
42 | */ |
||
43 | public function initializeAspects(ModuleEvent $e) |
||
57 | |||
58 | /** |
||
59 | * Returns configuration to merge with application configuration |
||
60 | * |
||
61 | * @return array|\Traversable |
||
62 | */ |
||
63 | public function getConfig() |
||
67 | } |
||
68 |