2019-02-10 19:52:21 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core\Config;
|
|
|
|
|
2019-07-15 20:13:53 +02:00
|
|
|
use Friendica\Model;
|
|
|
|
|
2019-02-10 19:52:21 +01:00
|
|
|
/**
|
|
|
|
* This class is responsible for the user-specific configuration values in Friendica
|
2019-07-15 20:19:52 +02:00
|
|
|
* The values are set through the Config-DB-Table (per Config-DB-model @see Model\Config\PConfig)
|
2019-02-10 19:52:21 +01:00
|
|
|
*
|
2019-10-16 14:58:09 +02:00
|
|
|
* The configuration cache (@see Cache\PConfigCache) is used for temporary caching of database calls. This will
|
2019-02-10 19:52:21 +01:00
|
|
|
* increase the performance.
|
|
|
|
*/
|
2019-12-19 20:11:07 +01:00
|
|
|
abstract class PConfiguration implements IPConfiguration
|
2019-02-10 19:52:21 +01:00
|
|
|
{
|
|
|
|
/**
|
2019-07-12 22:38:50 +02:00
|
|
|
* @var Cache\PConfigCache
|
2019-02-10 19:52:21 +01:00
|
|
|
*/
|
2019-07-15 20:13:53 +02:00
|
|
|
protected $configCache;
|
2019-02-10 19:52:21 +01:00
|
|
|
|
|
|
|
/**
|
2019-07-15 20:13:53 +02:00
|
|
|
* @var Model\Config\PConfig
|
2019-02-10 19:52:21 +01:00
|
|
|
*/
|
2019-07-15 20:13:53 +02:00
|
|
|
protected $configModel;
|
2019-02-10 19:52:21 +01:00
|
|
|
|
|
|
|
/**
|
2019-07-15 20:13:53 +02:00
|
|
|
* @param Cache\PConfigCache $configCache The configuration cache
|
|
|
|
* @param Model\Config\PConfig $configModel The configuration model
|
2019-02-10 19:52:21 +01:00
|
|
|
*/
|
2019-07-15 20:13:53 +02:00
|
|
|
public function __construct(Cache\PConfigCache $configCache, Model\Config\PConfig $configModel)
|
2019-02-10 19:52:21 +01:00
|
|
|
{
|
|
|
|
$this->configCache = $configCache;
|
2019-07-15 20:13:53 +02:00
|
|
|
$this->configModel = $configModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the Config Cache
|
|
|
|
*
|
|
|
|
* @return Cache\PConfigCache
|
|
|
|
*/
|
|
|
|
public function getCache()
|
|
|
|
{
|
|
|
|
return $this->configCache;
|
2019-02-10 19:52:21 +01:00
|
|
|
}
|
|
|
|
}
|