loadConfigFiles($configCache); return $configCache; } /** * @param string $type The adapter type * @param Config\IConfigCache $config The config cache of this adapter * * @return Config\IConfigAdapter */ public static function createConfig($type, Config\IConfigCache $config) { if ($type == 'preload') { return new Config\PreloadConfigAdapter($config); } else { return new Config\JITConfigAdapter($config); } } /** * @param string $type The adapter type * @param Config\IPConfigCache $config The config cache of this adapter * @param int $uid The UID of the current user * * @return Config\IPConfigAdapter */ public static function createPConfig($type, Config\IPConfigCache $config, $uid = null) { if ($type == 'preload') { return new Config\PreloadPConfigAdapter($config, $uid); } else { return new Config\JITPConfigAdapter($config); } } }