14 lines
338 B
PHP
14 lines
338 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Module activation configuration.
|
||
|
|
*
|
||
|
|
* Modules listed here are loaded at boot time. The APP_ENABLED_MODULES env
|
||
|
|
* variable (comma-separated) overrides this list when set.
|
||
|
|
*
|
||
|
|
* Each entry must match a directory name under modules/ containing a module.php manifest.
|
||
|
|
*/
|
||
|
|
return [
|
||
|
|
'enabled_modules' => ['addressbook'],
|
||
|
|
];
|