| 1 | <?php |
||
| 20 | class Module |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Gets the autoloader for this module. |
||
| 24 | * |
||
| 25 | * @return array |
||
| 26 | */ |
||
| 27 | 3 | public function getAutoloaderConfig() |
|
| 37 | |||
| 38 | /** |
||
| 39 | * Gets the configuration of this module. |
||
| 40 | * |
||
| 41 | * @return array |
||
| 42 | */ |
||
| 43 | 3 | public function getConfig() |
|
| 47 | |||
| 48 | /** |
||
| 49 | * Initializes the module. |
||
| 50 | * |
||
| 51 | * @param ModuleManager $moduleManager The module manager that is used by Zend Framework. |
||
| 52 | */ |
||
| 53 | 3 | public function init(ModuleManager $moduleManager) |
|
| 63 | } |
||
| 64 |