-
Notifications
You must be signed in to change notification settings - Fork 1
Module setup
Axel H. edited this page May 13, 2013
·
1 revision
All used modules must be defined in an ini style config file names modules.conf
. This file must be in your etc
directory (See Paths Configuration).
The file simply contains the module (directory) name as property and true (Load module) or false (Do not load module) as value. Alternatively the value can be set to the absolute path of the module.
Example:
[modules]
ZendDeveloperTools = true
rampage.devtools = true
foo.bar = true
foo.baz = true
The modules are loaded in the same order as they're defined. You can also load ZendFramework2 modules this way (as ZendDeveloperTools in the example above).
TODO