load($uid, $cat); } /** * @brief Get a particular user's config variable given the category name * ($cat) and a key. * * @param string $uid The user_id * @param string $cat The category of the configuration value * @param string $key The configuration key to query * @param mixed $default_value optional, The value to return if key is not set (default: null) * @param boolean $refresh optional, If true the config is loaded from the db and not from the cache (default: false) * * @return mixed Stored value or null if it does not exist */ public static function get($uid, $cat, $key, $default_value = null, $refresh = false) { return self::$config->get($uid, $cat, $key, $default_value, $refresh); } /** * @brief Sets a configuration value for a user * * @note Please do not store booleans - convert to 0/1 integer values! * * @param string $uid The user_id * @param string $cat The category of the configuration value * @param string $key The configuration key to set * @param mixed $value The value to store * * @return bool Operation success */ public static function set($uid, $cat, $key, $value) { return self::$config->set($uid, $cat, $key, $value); } /** * @brief Deletes the given key from the users's configuration. * * @param string $uid The user_id * @param string $cat The category of the configuration value * @param string $key The configuration key to delete * * @return bool */ public static function delete($uid, $cat, $key) { return self::$config->delete($uid, $cat, $key); } }