X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FConfig%2FPConfiguration.php;h=79ed1a61e6d0fe6eaeb429b3ed08e42939d02bb0;hb=7ce48d1b77e9a691b1f77ec01690175f6b27bda9;hp=99b1aa14698b17d9b14fc0f57c966b39419c22dc;hpb=4375edd63e44b71913bd45bf25a4a554582b581e;p=friendica.git diff --git a/src/Core/Config/PConfiguration.php b/src/Core/Config/PConfiguration.php index 99b1aa1469..79ed1a61e6 100644 --- a/src/Core/Config/PConfiguration.php +++ b/src/Core/Config/PConfiguration.php @@ -12,7 +12,7 @@ namespace Friendica\Core\Config; class PConfiguration { /** - * @var Cache\IPConfigCache + * @var Cache\PConfigCache */ private $configCache; @@ -22,10 +22,10 @@ class PConfiguration private $configAdapter; /** - * @param Cache\IPConfigCache $configCache The configuration cache + * @param Cache\PConfigCache $configCache The configuration cache * @param Adapter\IPConfigAdapter $configAdapter The configuration DB-backend */ - public function __construct(Cache\IPConfigCache $configCache, Adapter\IPConfigAdapter $configAdapter) + public function __construct(Cache\PConfigCache $configCache, Adapter\IPConfigAdapter $configAdapter) { $this->configCache = $configCache; $this->configAdapter = $configAdapter; @@ -50,7 +50,7 @@ class PConfiguration } // load the whole category out of the DB into the cache - $this->configCache->loadP($uid, $this->configAdapter->load($uid, $cat)); + $this->configCache->load($uid, $this->configAdapter->load($uid, $cat)); } /** @@ -77,18 +77,15 @@ class PConfiguration $refresh)) { $dbValue = $this->configAdapter->get($uid, $cat, $key); - if ($dbValue !== '!!') { - $this->configCache->setP($uid, $cat, $key, $dbValue); + if (isset($dbValue)) { + $this->configCache->set($uid, $cat, $key, $dbValue); return $dbValue; } } // use the config cache for return - if ($this->configCache->hasP($uid, $cat, $key)) { - return $this->configCache->getP($uid, $cat, $key); - } else { - return $default_value; - } + $result = $this->configCache->get($uid, $cat, $key); + return (isset($result)) ? $result : $default_value; } /** @@ -109,7 +106,7 @@ class PConfiguration public function set($uid, $cat, $key, $value) { // set the cache first - $cached = $this->configCache->setP($uid, $cat, $key, $value); + $cached = $this->configCache->set($uid, $cat, $key, $value); // If there is no connected adapter, we're finished if (!$this->configAdapter->isConnected()) { @@ -136,7 +133,7 @@ class PConfiguration */ public function delete($uid, $cat, $key) { - $cacheRemoved = $this->configCache->deleteP($uid, $cat, $key); + $cacheRemoved = $this->configCache->delete($uid, $cat, $key); if (!$this->configAdapter->isConnected()) { return $cacheRemoved;