X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fconfig.php;h=de13385e490c4f48056bac158483c57d52a3310f;hb=6de6b086c826ae3bcdf0996a86319d5b7354e3c6;hp=868f53fd39aed93777a45997479cec348dd33d2f;hpb=7aae7aa8325f660cbe1e238f3062550a0c2ba5bf;p=core.git diff --git a/inc/config.php b/inc/config.php index 868f53fd..de13385e 100644 --- a/inc/config.php +++ b/inc/config.php @@ -356,5 +356,26 @@ $cfg->setConfigEntry('hostname_file', '/etc/hostname'); // CFG: DATABASE-CACHE-ENABLED $cfg->setConfigEntry('database_cache_enabled', FALSE); +// CFG: DIRECTORY-CLASS +$cfg->setConfigEntry('directory_class', 'FrameworkDirectoryPointer'); + +// CFG: FILE-INPUT-CLASS +$cfg->setConfigEntry('file_raw_input_class', 'FrameworkFileInputPointer'); + +// CFG: FILE-OUTPUT-CLASS +$cfg->setConfigEntry('file_raw_output_class', 'FrameworkFileOutputPointer'); + +// CFG: FILE-INPUT-OUTPUT-CLASS +$cfg->setConfigEntry('file_raw_input_output_class', 'FrameworkFileInputOutputPointer'); + +// CFG: FILE-IO-ITERATOR-CLASS +$cfg->setConfigEntry('file_io_iterator_class', 'FileIoIterator'); + +// CFG: FILE-STACK-PRE-ALLOCATE-ENABLED +$cfg->setConfigEntry('file_stack_pre_allocate_enabled', 'Y'); + +// CFG: FILE-STACK-PRE-ALLOCATE-COUNT +$cfg->setConfigEntry('file_stack_pre_allocate_count', 10000); + // [EOF] ?>