friendica/src/Factory/ConfigFactory.php

53 lines
1.3 KiB
PHP
Raw Normal View History

2019-02-03 22:22:04 +01:00
<?php
namespace Friendica\Factory;
use Friendica\Core\Config;
class ConfigFactory
{
/**
* @param Config\ConfigCacheLoader $loader The Config Cache loader (INI/config/.htconfig)
*
* @return Config\ConfigCache
*/
2019-02-03 22:22:04 +01:00
public static function createCache(Config\ConfigCacheLoader $loader)
{
$configCache = new Config\ConfigCache();
$loader->loadConfigFiles($configCache);
return $configCache;
}
/**
* @param string $type The adapter type
* @param Config\IConfigCache $config The config cache of this adapter
*
2019-02-03 22:22:04 +01:00
* @return Config\IConfigAdapter
*/
public static function createConfig($type, Config\IConfigCache $config)
2019-02-03 22:22:04 +01:00
{
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
2019-02-03 23:22:05 +01:00
* @param int $uid The UID of the current user
*
2019-02-03 22:22:04 +01:00
* @return Config\IPConfigAdapter
*/
public static function createPConfig($type, Config\IPConfigCache $config, $uid = null)
2019-02-03 22:22:04 +01:00
{
if ($type == 'preload') {
2019-02-03 23:22:05 +01:00
return new Config\PreloadPConfigAdapter($config, $uid);
2019-02-03 22:22:04 +01:00
} else {
return new Config\JITPConfigAdapter($config);
}
}
}