Implemented new Configuration handling
Dieser Commit ist enthalten in:
Ursprung
6cfb97b401
Commit
edc44e2f30
22 geänderte Dateien mit 730 neuen und 107 gelöschten Zeilen
|
|
@ -5,19 +5,19 @@ phpSettings.error_reporting = E_ALL
|
|||
phpSettings.default_charset = "UTF-8"
|
||||
phpSettings.date.timezone = "Europe/Berlin"
|
||||
phpSettings.magic_quotes_runtime = 0
|
||||
includePaths.library = APPLICATION_PATH "" DS ".." DS "library"
|
||||
bootstrap.path = APPLICATION_PATH "" DS "Bootstrap.php"
|
||||
includePaths.library = APPLICATION_PATH "/../library"
|
||||
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
|
||||
bootstrap.class = "Bootstrap"
|
||||
appnamespace = "Application"
|
||||
resources.frontController.controllerDirectory = APPLICATION_PATH "" DS "controllers"
|
||||
resources.frontController.moduleDirectory = APPLICATION_PATH "" DS "modules"
|
||||
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
|
||||
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
|
||||
resources.frontController.params.displayExceptions = 0
|
||||
resources.view.basePath = APPLICATION_PATH "" DS "views"
|
||||
resources.layout.layoutPath = APPLICATION_PATH "" DS "views" DS "layouts"
|
||||
resources.frontController.actionHelperPaths.Msd_Action_Helper = "Msd" DS "Action" DS "Helper" DS
|
||||
resources.view.basePath = APPLICATION_PATH "/views"
|
||||
resources.layout.layoutPath = APPLICATION_PATH "/views/layouts"
|
||||
resources.frontController.actionHelperPaths.Msd_Action_Helper = "Msd/Action/Helper/"
|
||||
resources.view.encoding = "UTF-8"
|
||||
resources.view.helperPath.ZendX_JQuery_View_Helper = "ZendX/JQuery/View/Helper/"
|
||||
resources.view.helperPath.Msd_View_Helper = APPLICATION_PATH "" DS "views" DS "helpers"
|
||||
resources.view.helperPath.Msd_View_Helper = APPLICATION_PATH "/views/helpers"
|
||||
resources.view.doctype = XHTML1_STRICT
|
||||
; setHelperPath plugin is no longer used, because the paths are set here.
|
||||
resources.frontController.plugins.loginCheck = "Application_Plugin_LoginCheck"
|
||||
|
|
|
|||
|
|
@ -9,4 +9,4 @@ request.params.a = "get_language_file"
|
|||
request.params.v = ":version"
|
||||
request.params.l = ":language"
|
||||
request.sourceFileKey = "f"
|
||||
targetBaseDir = APPLICATION_PATH "" DS "language"
|
||||
targetBaseDir = APPLICATION_PATH "/language"
|
||||
|
|
|
|||
Laden …
Tabelle hinzufügen
Einen Link hinzufügen
In neuem Issue referenzieren