| 1 | <?php |
||
| 19 | class Module implements |
||
| 20 | AutoloaderProviderInterface, |
||
| 21 | ConfigProviderInterface, |
||
| 22 | DependencyIndicatorInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * Имя секции в конфиги приложения отвечающей за настройки модуля |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | const CONFIG_KEY = 'nnx_form-comparator'; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Имя модуля |
||
| 33 | * |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | const MODULE_NAME = __NAMESPACE__; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return array |
||
| 40 | */ |
||
| 41 | public function getModuleDependencies() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return array |
||
| 50 | */ |
||
| 51 | public function getAutoloaderConfig() |
||
| 61 | |||
| 62 | |||
| 63 | /** |
||
| 64 | * @inheritdoc |
||
| 65 | * |
||
| 66 | * @return array |
||
| 67 | */ |
||
| 68 | public function getConfig() |
||
| 76 | |||
| 77 | } |