X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fconfig.php;h=807bc1d67f8b93e912b2b7e9cada11130203217b;hp=65bc3c56436cf7271ccb0af8ec2fd52ef40fa40c;hb=0b0228ee8e795d5bd429449eeefcef27730c895e;hpb=36e4d0eb331bd724db0bd23071271d5eaeb37b17 diff --git a/inc/config.php b/inc/config.php index 65bc3c56..807bc1d6 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, 2010 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -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'); @@ -251,6 +254,9 @@ $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); @@ -305,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] ?>