Move PConfig::load() to DI::pConfig()->load()
This commit is contained in:
parent
71181704d4
commit
6e2880c679
2 changed files with 2 additions and 14 deletions
|
@ -19,19 +19,6 @@ use Friendica\DI;
|
||||||
*/
|
*/
|
||||||
class PConfig
|
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
|
* @brief Get a particular user's config variable given the category name
|
||||||
* ($cat) and a key.
|
* ($cat) and a key.
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
use Friendica\Core\Config;
|
use Friendica\Core\Config;
|
||||||
use Friendica\Core\PConfig;
|
use Friendica\Core\PConfig;
|
||||||
|
use Friendica\DI;
|
||||||
use Friendica\Util\Strings;
|
use Friendica\Util\Strings;
|
||||||
|
|
||||||
require_once 'view/theme/frio/php/PHPColors/Color.php';
|
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.
|
// Get the UID of the profile owner.
|
||||||
$uid = $_REQUEST['puid'] ?? 0;
|
$uid = $_REQUEST['puid'] ?? 0;
|
||||||
if ($uid) {
|
if ($uid) {
|
||||||
PConfig::load($uid, 'frio');
|
DI::pConfig()->load($uid, 'frio');
|
||||||
|
|
||||||
// Only override display settings that have actually been set
|
// Only override display settings that have actually been set
|
||||||
$scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema')) ?: $scheme;
|
$scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema')) ?: $scheme;
|
||||||
|
|
Loading…
Reference in a new issue