From: Mikael Nordfeldth Date: Tue, 3 Feb 2015 20:58:17 +0000 (+0100) Subject: getConfigPref for globally configurable fallbacks X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4eea68e5571c0de116a604934f696f4cd55fb227;p=quix0rs-gnu-social.git getConfigPref for globally configurable fallbacks --- diff --git a/classes/Profile.php b/classes/Profile.php index 6f839baaea..0b608fbb24 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -1579,6 +1579,12 @@ class Profile extends Managed_DataObject } } + // The same as getPref but will fall back to common_config value for the same namespace/topic + public function getConfigPref($namespace, $topic) + { + return Profile_prefs::getConfigData($this, $namespace, $topic); + } + public function setPref($namespace, $topic, $data) { return Profile_prefs::setData($this, $namespace, $topic, $data); }