friendica/src/Core/Config/PConfiguration.php

46 lines
1.0 KiB
PHP
Raw Normal View History

<?php
namespace Friendica\Core\Config;
2019-07-15 20:13:53 +02:00
use Friendica\Model;
/**
* 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)
*
* The configuration cache (@see Cache\PConfigCache) is used for temporary caching of database calls. This will
* increase the performance.
*/
abstract class PConfiguration implements IPConfiguration
{
/**
* @var Cache\PConfigCache
*/
2019-07-15 20:13:53 +02:00
protected $configCache;
/**
2019-07-15 20:13:53 +02:00
* @var Model\Config\PConfig
*/
2019-07-15 20:13:53 +02:00
protected $configModel;
/**
2019-07-15 20:13:53 +02:00
* @param Cache\PConfigCache $configCache The configuration cache
* @param Model\Config\PConfig $configModel The configuration model
*/
2019-07-15 20:13:53 +02:00
public function __construct(Cache\PConfigCache $configCache, Model\Config\PConfig $configModel)
{
$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;
}
}