config is used for hub specific configurations. It overrides the * configurations from .htconfig file. The storage is of size TEXT. * - pconfig is used for channel specific configurations and takes a * channel_id as identifier. It stores for example which features are * enabled per channel. The storage is of size MEDIUMTEXT. * @code{.php} $var = get_pconfig(local_channel(), 'category', 'key');@endcode * - xconfig is the same as pconfig, except that it uses xchan as * an identifier. This is for example for people who do not have a local account. * The storage is of size MEDIUMTEXT. * @code{.php} * $observer = App::get_observer_hash(); * if ($observer) { * $var = get_xconfig($observer, 'category', 'key'); * }@endcode * * - get_config() and set_config() can also be done through the command line tool * @ref util/config.md "util/config" * - get_pconfig() and set_pconfig() can also be done through the command line tool * @ref util/pconfig.md "util/pconfig" and takes a channel_id as first argument. * */ use Zotlabs\Lib as Zlib; /** * Loads the hub's configuration from database to a cached storage. * * Retrieve a category ($family) of config variables from database to a cached * storage in the global App::$config[$family]. * * @param string $family The category of the configuration value * * @return Nothing * * @deprecated * This function is deprecated, use Zotlabs\Lib\Config::Load * instead. */ function load_config($family) { Zlib\Config::Load($family); } /** * Get a particular config variable given the category name ($family) * and a key. * * Get a particular config variable from the given category ($family) and the * $key from a cached storage in App::$config[$family]. If a key is found in the * DB but does not exist in local config cache, pull it into the cache so we * do not have to hit the DB again for this item. * * Returns false if not set. * * @param string $family The category of the configuration value * @param string $key The configuration key to query * @param string $default (optional) default false * * @return mixed|false Return value or false on error or if not set * * @deprecated * This function is deprecated, use Zotlabs\Lib\Config::Get * instead. */ function get_config($family, $key, $default = false) { return Zlib\Config::Get($family,$key,$default); } /** * Sets a configuration value for the hub. * * Stores a config value ($value) in the category ($family) under the key ($key). * * @param string $family The category of the configuration value * @param string $key The configuration key to set * @param mixed $value The value to store in the configuration * * @return mixed|false Return the set value, or false if the database update failed * * @deprecated * This function is deprecated, use Zotlabs\Lib\Config::Set * instead. */ function set_config($family, $key, $value) { return Zlib\Config::Set($family,$key,$value); } /** * Deletes the given key from the hub's configuration database. * * Removes the configured value from the stored cache in App::$config[$family] * and removes it from the database. * * @param string $family The category of the configuration value * @param string $key The configuration key to delete * * @return mixed * * @deprecated * This function is deprecated, use Zotlabs\Lib\Config::Delete * instead. */ function del_config($family, $key) { return Zlib\Config::Delete($family,$key); } function load_pconfig($uid) { Zlib\PConfig::Load($uid); } function get_pconfig($uid, $family, $key, $default = false) { return Zlib\PConfig::Get($uid,$family,$key,$default); } function set_pconfig($uid, $family, $key, $value) { return Zlib\PConfig::Set($uid,$family,$key,$value); } function del_pconfig($uid, $family, $key, $updated = NULL) { return Zlib\PConfig::Delete($uid,$family,$key,$updated); } function load_xconfig($xchan) { Zlib\XConfig::Load($xchan); } function get_xconfig($xchan, $family, $key, $default = false) { return Zlib\XConfig::Get($xchan,$family,$key, $default); } function set_xconfig($xchan, $family, $key, $value) { return Zlib\XConfig::Set($xchan,$family,$key,$value); } function del_xconfig($xchan, $family, $key) { return Zlib\XConfig::Delete($xchan,$family,$key); } function load_aconfig($account_id) { Zlib\AConfig::Load($account_id); } function get_aconfig($account_id, $family, $key, $default = false) { return Zlib\AConfig::Get($account_id, $family, $key, $default); } function set_aconfig($account_id, $family, $key, $value) { return Zlib\AConfig::Set($account_id, $family, $key, $value); } function del_aconfig($account_id, $family, $key) { return Zlib\AConfig::Delete($account_id, $family, $key); } function load_abconfig($chan, $xhash, $family = '') { return Zlib\AbConfig::Load($chan,$xhash,$family); } function get_abconfig($chan,$xhash,$family,$key, $default = false) { return Zlib\AbConfig::Get($chan,$xhash,$family,$key, $default); } function set_abconfig($chan,$xhash,$family,$key,$value) { return Zlib\AbConfig::Set($chan,$xhash,$family,$key,$value); } function del_abconfig($chan,$xhash,$family,$key) { return Zlib\AbConfig::Delete($chan,$xhash,$family,$key); } function load_iconfig(&$item) { Zlib\IConfig::Load($item); } function get_iconfig(&$item, $family, $key, $default = false) { return Zlib\IConfig::Get($item, $family, $key, $default); } function set_iconfig(&$item, $family, $key, $value, $sharing = false) { return Zlib\IConfig::Set($item, $family, $key, $value, $sharing); } function del_iconfig(&$item, $family, $key) { return Zlib\IConfig::Delete($item, $family, $key); } function load_sconfig($server_id) { Zlib\SConfig::Load($server_id); } function get_sconfig($server_id, $family, $key, $default = false) { return Zlib\SConfig::Get($server_id, $family, $key, $default); } function set_sconfig($server_id, $family, $key, $value) { return Zlib\SConfig::Set($server_id, $family, $key, $value); } function del_sconfig($server_id, $family, $key) { return Zlib\SConfig::Delete($server_id, $family, $key); }