Deprecate *_config() functions in core.

This commit is contained in:
Harald Eilertsen
2024-03-24 09:58:21 +00:00
committed by Mario
parent acc1834b0d
commit 0dc959d9fe
145 changed files with 1216 additions and 1004 deletions

View File

@@ -4,6 +4,7 @@
* @brief Items related functions.
*/
use Zotlabs\Lib\Config;
use Zotlabs\Lib\Crypto;
use Zotlabs\Lib\Enotify;
use Zotlabs\Lib\MarkdownSoap;
@@ -1078,7 +1079,7 @@ function encode_item($item,$mirror = false,$zap_compat = false) {
$x['type'] = 'activity';
$x['encoding'] = 'zot';
$key = get_config('system','prvkey');
$key = Config::Get('system','prvkey');
// If we're trying to backup an item so that it's recoverable or for export/imprt,
// add all the attributes we need to recover it
@@ -2696,7 +2697,7 @@ function tag_deliver($uid, $item_id) {
logger('Post mentions: ' . print_r($terms,true), LOGGER_DATA);
}
$max_forums = get_config('system','max_tagged_forums',2);
$max_forums = Config::Get('system','max_tagged_forums',2);
$matched_forums = 0;
@@ -2968,7 +2969,7 @@ function tgroup_check($uid, $item) {
if(! $u)
return false;
$max_forums = get_config('system','max_tagged_forums',2);
$max_forums = Config::Get('system','max_tagged_forums',2);
$matched_forums = 0;
$link = normalise_link($u[0]['xchan_url']);
@@ -3073,7 +3074,7 @@ function i_am_mentioned($channel, $item, $check_groups = false) {
}
}
}
$unless = intval(get_pconfig($channel['channel_id'], 'system', 'unless_mention_count', get_config('system', 'unless_mention_count', 20)));
$unless = intval(get_pconfig($channel['channel_id'], 'system', 'unless_mention_count', Config::Get('system', 'unless_mention_count', 20)));
if ($unless && $terms && count($terms) > $unless) {
$tagged = false;
}
@@ -3762,7 +3763,7 @@ function item_expire($uid,$days,$comment_days = 7) {
$sql_extra = ((intval($expire_network_only)) ? " AND item_wall = 0 " : "");
$expire_limit = get_config('system','expire_limit', 1000);
$expire_limit = Config::Get('system','expire_limit', 1000);
$item_normal = item_normal();