]> git.mxchange.org Git - core.git/blobdiff - inc/config.php
Maybe more classes needs to have these methods (with thrown exception) as they
[core.git] / inc / config.php
index 18f58c0b418c035d1073f69a6577c2e35509e9c2..00fce07e262827e78a38780ca10def459c92ab69 100644 (file)
@@ -353,5 +353,23 @@ $cfg->setConfigEntry('proxy_connect_method', 'Y');
 // CFG: HOSTNAME-FILE
 $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');
+
 // [EOF]
 ?>