X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fconfig.php;h=d4b24e7c3bb7deab229ed40fc792b93670d83c6d;hb=2184e4124fec09c2ac74b8092a4a67389d6ac958;hp=f7cd0c7f9600036158e1eac30cd373bcb531e598;hpb=9285c8b7c6e231a21fc2275c61c3aa682a3b6d6e;p=core.git diff --git a/inc/config.php b/inc/config.php index f7cd0c7f..d4b24e7c 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,20 @@ $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'); + +// CFG: EXTENSION-SCRYPT-LOADED (By default scrypt is assumed absent and later tested being there) +$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); + // [EOF] ?>