X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fconfig.php;h=2dd258af47c85edf45f9dda0c3c26a50db2b92a9;hp=a930355fcb0ae60760fad8c425d1baaa400b54ba;hb=90608b0a257489c8da469af16a96007093dc1ffa;hpb=055cdee905b52916539aed45a2f9c51f63b4a4ff diff --git a/inc/config.php b/inc/config.php index a930355f..2dd258af 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, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -80,8 +80,11 @@ $cfg->setConfigEntry('lang_base_path', "inc/language/"); // CFG: COMPRESSOR-BASE-PATH $cfg->setConfigEntry('compressor_base_path', "inc/classes/main/compressor/"); +// CFG: APPLICATION-BASE-PATH +$cfg->setConfigEntry('application_base_path', "application/"); + // CFG: APPLICATION-PATH -$cfg->setConfigEntry('application_path', $cfg->readConfig('base_path') . "application/"); +$cfg->setConfigEntry('application_path', $cfg->readConfig('base_path') . $cfg->readConfig('application_base_path')); // CFG: COMPILE-OUTPUT-PATH $cfg->setConfigEntry('compile_output_path', "templates/_compiled/"); @@ -105,7 +108,7 @@ $cfg->setConfigEntry('email_template_type', "emails"); $cfg->setConfigEntry('code_template_type', "code"); // CFG: WEB-ENGINE -$cfg->setConfigEntry('web_engine', "WebOutput"); +$cfg->setConfigEntry('output_class', "WebOutput"); // CFG: SELECTOR-TEMPLATE-PREFIX $cfg->setConfigEntry('tpl_selector_prefix', "selector"); @@ -117,16 +120,16 @@ $cfg->setConfigEntry('web_content_type', "text/html"); $cfg->setConfigEntry('tpl_valid_var', "content"); // CFG: META-AUTHOR -$cfg->setConfigEntry('meta_author', "Roland Häder"); +$cfg->setConfigEntry('meta_author', "Your-name-here"); // CFG: META-PUBLISHER -$cfg->setConfigEntry('meta_publisher', "Roland Häder"); +$cfg->setConfigEntry('meta_publisher', "Your-name-here"); // CFG: META-KEYWORDS $cfg->setConfigEntry('meta_keywords', "test,test,test"); // CFG: META-DESCRIPTION -$cfg->setConfigEntry('meta_description', "A lame description for an application framework"); +$cfg->setConfigEntry('meta_description', "A description for your website"); // CFG: SELECTOR-MAIN-TEMPLATE $cfg->setConfigEntry('selector_main_tpl', "selector_main");