X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fconfig.php;h=2f3b5faaecc7b1273aaa06c212888721a664413a;hb=a7c844ebb8635c499610fe195450ed5138f9e011;hp=f7cd0c7f9600036158e1eac30cd373bcb531e598;hpb=9285c8b7c6e231a21fc2275c61c3aa682a3b6d6e;p=core.git diff --git a/inc/config.php b/inc/config.php index f7cd0c7f..2f3b5faa 100644 --- a/inc/config.php +++ b/inc/config.php @@ -25,8 +25,8 @@ */ // 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/main/interfaces/class_FrameworkInterface.php'); +require(ApplicationEntryPoint::detectCorePath() . '/inc/main/interfaces/registry/class_Registerable.php'); require(ApplicationEntryPoint::detectCorePath() . '/inc/config/class_FrameworkConfiguration.php'); // Get a new configuration instance @@ -78,7 +78,7 @@ $cfg->setConfigEntry('tpl_base_path', 'templates/'); $cfg->setConfigEntry('lang_base_path', 'inc/language/'); // CFG: COMPRESSOR-BASE-PATH -$cfg->setConfigEntry('compressor_base_path', 'inc/classes/main/compressor/'); +$cfg->setConfigEntry('compressor_base_path', 'inc/main/classes/compressor/'); // CFG: APPLICATION-BASE-PATH $cfg->setConfigEntry('application_base_path', 'application/'); @@ -341,8 +341,11 @@ $cfg->setConfigEntry('local_file_database_class', 'CachedLocalFileDatabase'); // CFG: COMPRESSOR-CHANNEL-CLASS $cfg->setConfigEntry('compressor_channel_class', 'CompressorChannel'); -// CFG: DEBUG-OUTPUT-TIMINGS -$cfg->setConfigEntry('debug_output_timings', 'N'); +// CFG: DEBUG-HTML-OUTPUT-TIMINGS +$cfg->setConfigEntry('debug_html_output_timings', 'N'); + +// CFG: DEBUG-CONSOLE-OUTPUT-TIMINGS +$cfg->setConfigEntry('debug_console_output_timings', 'Y'); // CFG: PROXY-HOST $cfg->setConfigEntry('proxy_host', ''); @@ -452,5 +455,14 @@ $cfg->setConfigEntry('menu_template_class', 'MenuTemplateEngine'); // CFG: MENU-TEMPLATE-EXTENSION $cfg->setConfigEntry('menu_template_extension', '.xml'); +// CFG: FEATURE-FUSE-CLASS +$cfg->setConfigEntry('feature_fuse_class', 'FuseFeature'); + +// CFG: TEMP-FILE-PATH +$cfg->setConfigEntry('temp_file_path', sys_get_temp_dir()); + +// CFG: IPC-SOCKET-FILE-NAME +$cfg->setConfigEntry('ipc_socket_file_name', 'php_ipc_socket'); + // [EOF] ?>