]> git.mxchange.org Git - friendica.git/commitdiff
Move PConfig::load() to DI::pConfig()->load()
authornupplaPhil <admin@philipp.info>
Sat, 18 Jan 2020 14:59:01 +0000 (15:59 +0100)
committernupplaPhil <admin@philipp.info>
Sat, 18 Jan 2020 14:59:01 +0000 (15:59 +0100)
src/Core/PConfig.php
view/theme/frio/style.php

index 06b0140097697538226f58341e1c17d859d6e683..7d5d8e553bdcd34aa957d00cdc9657b533432f28 100644 (file)
@@ -19,19 +19,6 @@ use Friendica\DI;
  */
 class PConfig
 {
-       /**
-        * @brief Loads all configuration values of a user's config family into a cached storage.
-        *
-        * @param int    $uid The user_id
-        * @param string $cat The category of the configuration value
-        *
-        * @return void
-        */
-       public static function load(int $uid, string $cat)
-       {
-               DI::pConfig()->load($uid, $cat);
-       }
-
        /**
         * @brief Get a particular user's config variable given the category name
         * ($cat) and a key.
index c39e672dfa4dd74781ecc1c9d23e54496861dc10..919c3806e48a39e359518a6b58f2b5738f61edfe 100644 (file)
@@ -5,6 +5,7 @@
 
 use Friendica\Core\Config;
 use Friendica\Core\PConfig;
+use Friendica\DI;
 use Friendica\Util\Strings;
 
 require_once 'view/theme/frio/php/PHPColors/Color.php';
@@ -37,7 +38,7 @@ $login_bg_color = $login_bg_color ?: '#ededed';
 // Get the UID of the profile owner.
 $uid = $_REQUEST['puid'] ?? 0;
 if ($uid) {
-       PConfig::load($uid, 'frio');
+       DI::pConfig()->load($uid, 'frio');
 
        // Only override display settings that have actually been set
        $scheme           = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema')) ?: $scheme;