Could anyone tell me where I could find list of all 'resources' and their 'properties' that could be used in 'Application.ini' file?
This is example of 'Application.ini' from 'ZF Reference Guide:
- Code: Select all
[production]
phpSettings.display_startup_errors = 0
phpSettings.display_errors = 0
includePaths.library = APPLICATION_PATH "/../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
[staging : production]
[testing : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
[development : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
It would be really great if there was a comprehensive list of those predefined 'properties', so I'd really appreciate if anyone knows something about this.
Thanx

