X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fconfig.php;h=a1ba03c99104fe0aacbc62cd79121c277bdd3079;hp=bb9750aac4eaa37d4f507a830f3709b1bb47d6fc;hb=b002c5909aa0f781505dde5414964b0f014cde01;hpb=717829ec4b1f04e88e65838110d7cc8d9c4933c1 diff --git a/inc/config.php b/inc/config.php index bb9750aa..a1ba03c9 100644 --- a/inc/config.php +++ b/inc/config.php @@ -1,8 +1,4 @@ * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @@ -52,7 +48,6 @@ $cfg->setConfigEntry('local_db_path', $cfg->getConfigEntry('base_path') . 'db/') $cfg->setDefaultTimezone('Europe/Berlin'); // CFG: MAGIC-QUOTES-RUNTIME -// @DEPRECATED As PHP is deprecating this $cfg->setMagicQuotesRuntime(FALSE); // CFG: CLASS-PREFIX @@ -70,6 +65,9 @@ $cfg->setConfigEntry('code_template_extension', '.ctp'); // CFG: SELECTOR-PATH $cfg->setConfigEntry('selector_path', 'selector'); +// CFG: APPLICATION-HELPER-CLASS +$cfg->setConfigEntry('app_helper_class', 'ApplicationHelper'); + // CFG: LAUNCH-METHOD $cfg->setConfigEntry('entry_method', 'entryPoint'); @@ -101,7 +99,7 @@ $cfg->setConfigEntry('deco_xml_rewriter_template_class', 'XmlRewriterTemplateDec $cfg->setConfigEntry('debug_html_class', 'DebugWebOutput'); // CFG: DEBUG-CONSOLE-CLASS -$cfg->setConfigEntry('debug_console_class', 'CoreFramework\Debug\Output\DebugConsoleOutput'); +$cfg->setConfigEntry('debug_console_class', 'DebugConsoleOutput'); // CFG: DEFAULT-LANGUAGE $cfg->setConfigEntry('default_lang', 'de'); // A two-char language string: de for german, en for english and so on @@ -284,10 +282,10 @@ $cfg->setConfigEntry('salt_length', 10); $cfg->setConfigEntry('rnd_str_length', 128); // CFG: HASH-EXTRA-MASK -$cfg->setConfigEntry('hash_extra_mask', '%1s:%2s:%3s'); // 1=salt, 2=extra salt, 3=plain password/string +$cfg->setConfigEntry('hash_extra_mask', "%1s:%2s:%3s"); // 1=salt, 2=extra salt, 3=plain password/string // CFG: HASH-NORMAL-MASK -$cfg->setConfigEntry('hash_normal_mask', '%1s:%2s'); // 1=salt, 2=plain password/string +$cfg->setConfigEntry('hash_normal_mask', "%1s:%2s"); // 1=salt, 2=plain password/string // CFG: IS-SINGLE-SERVER $cfg->setConfigEntry('is_single_server', 'Y'); @@ -471,6 +469,3 @@ $cfg->setConfigEntry('extension_scrypt_loaded', FALSE); // CFG: EXTENSION-UUID-LOADED (By default uuid is assumed absent and later tested being there) $cfg->setConfigEntry('extension_uuid_loaded', FALSE); - -// Remove config from this name-space. Don't worry, no configuration is cleared. -unset($cfg);