X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fconfig.php;h=73dc39421163033439c561a3fd5d4b3ca513ab2d;hp=84cb5681b27dce31d31d911081e936fa2c07f1a0;hb=8cc44455576c4ee3145803229bf1d80e17d1eb85;hpb=c7c0845049bcbb8dd89948e753f5df290e01f664 diff --git a/inc/config.php b/inc/config.php index 84cb5681..73dc3942 100644 --- a/inc/config.php +++ b/inc/config.php @@ -6,7 +6,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -24,7 +24,7 @@ * along with this program. If not, see . */ -// Load the class from inc/config direktory +// Load very basic classes, required to bootstrap require(ApplicationEntryPoint::detectCorePath() . '/inc/classes/interfaces/class_FrameworkInterface.php'); require(ApplicationEntryPoint::detectCorePath() . '/inc/classes/interfaces/registry/class_Registerable.php'); require(ApplicationEntryPoint::detectCorePath() . '/inc/config/class_FrameworkConfiguration.php'); @@ -90,7 +90,10 @@ $cfg->setConfigEntry('application_path', $cfg->getConfigEntry('base_path') . $cf $cfg->setConfigEntry('compile_output_path', 'templates/_compiled/'); // CFG: TEMPLATE-CLASS -$cfg->setConfigEntry('template_class', 'WebTemplateEngine'); +$cfg->setConfigEntry('web_template_class', 'WebTemplateEngine'); + +// CFG: DECO-XML-REWRITER-TEMPLATE-CLASS +$cfg->setConfigEntry('deco_xml_rewriter_template_class', 'XmlRewriterTemplateDecorator'); // CFG: DEBUG-CLASS $cfg->setConfigEntry('debug_class', 'DebugWebOutput'); @@ -110,6 +113,9 @@ $cfg->setConfigEntry('code_template_type', 'code'); // CFG: IMAGE-TEMPLATE-TYPE $cfg->setConfigEntry('image_template_type', 'image'); +// CFG: MENU-TEMPLATE-TYPE +$cfg->setConfigEntry('menu_template_type', 'menu'); + // CFG: OUTPUT-CLASS $cfg->setConfigEntry('output_class', 'WebOutput'); @@ -245,6 +251,12 @@ $cfg->setConfigEntry('image_cmd_code_captcha_resolver_class', 'ImageCommandResol // CFG: MAILER-CLASS $cfg->setConfigEntry('mailer_class', 'DebugMailer'); +// CFG: XML-PARSER-CLASS +$cfg->setConfigEntry('xml_parser_class', 'XmlParser'); + +// CFG: DECO-COMPACTING-XML-PARSER-CLASS +$cfg->setConfigEntry('deco_compacting_xml_parser_class', 'XmlCompactorDecorator'); + // CFG: MATH-PRIME $cfg->setConfigEntry('math_prime', 591623); @@ -299,5 +311,14 @@ $cfg->setConfigEntry('product_install_mode', 'debug'); // CFG: DECIMALS $cfg->setConfigEntry('decimals', 3); +// CFG: MENU-STACKER-CLASS +$cfg->setConfigEntry('menu_stacker_class', 'FiLoStacker'); + +// CFG: STACKER-GENERIC-MAX-SIZE +$cfg->setConfigEntry('stacker_generic_max_size', 100); + +// CFG: STACKER-CURRENT-NODE-MAX-SIZE +$cfg->setConfigEntry('stacker_current_node_max_size', 20); + // [EOF] ?>