Move PConfig::delete() to DI::pConfig()->delete()

Этот коммит содержится в:
Philipp Holzer 2020-01-18 16:56:46 +01:00
родитель 88bb66371c
Коммит b5c0df439f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: D8365C3D36B77D90
4 изменённых файлов: 10 добавлений и 23 удалений

Просмотреть файл

@ -29,14 +29,14 @@ function ostatus_subscribe_content(App $a)
if (DI::pConfig()->get($uid, 'ostatus', 'legacy_friends') == '') {
if ($_REQUEST['url'] == '') {
PConfig::delete($uid, 'ostatus', 'legacy_contact');
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
return $o . L10n::t('No contact provided.');
}
$contact = Probe::uri($_REQUEST['url']);
if (!$contact) {
PConfig::delete($uid, 'ostatus', 'legacy_contact');
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
return $o . L10n::t('Couldn\'t fetch information for contact.');
}
@ -46,7 +46,7 @@ function ostatus_subscribe_content(App $a)
$curlResult = Network::curl($api . 'statuses/friends.json?screen_name=' . $contact['nick']);
if (!$curlResult->isSuccess()) {
PConfig::delete($uid, 'ostatus', 'legacy_contact');
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
return $o . L10n::t('Couldn\'t fetch friends for contact.');
}
@ -63,8 +63,8 @@ function ostatus_subscribe_content(App $a)
if ($counter >= $total) {
DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/settings/connectors">';
PConfig::delete($uid, 'ostatus', 'legacy_friends');
PConfig::delete($uid, 'ostatus', 'legacy_contact');
DI::pConfig()->delete($uid, 'ostatus', 'legacy_friends');
DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
$o .= L10n::t('Done');
return $o;
}

Просмотреть файл

@ -19,17 +19,4 @@ use Friendica\DI;
*/
class PConfig
{
/**
* @brief Deletes the given key from the users's configuration.
*
* @param int $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(int $uid, string $cat, string $key)
{
return DI::pConfig()->delete($uid, $cat, $key);
}
}

Просмотреть файл

@ -45,8 +45,8 @@ class Index extends BaseSettingsModule
case 'disable':
if ($has_secret) {
RecoveryCode::deleteForUser(local_user());
PConfig::delete(local_user(), '2fa', 'secret');
PConfig::delete(local_user(), '2fa', 'verified');
DI::pConfig()->delete(local_user(), '2fa', 'secret');
DI::pConfig()->delete(local_user(), '2fa', 'verified');
Session::remove('2fa');
notice(L10n::t('Two-factor authentication successfully disabled.'));

Просмотреть файл

@ -135,7 +135,7 @@ function update_1191()
$value = $rr['v'];
if ($key === 'randomise') {
PConfig::delete($uid, $family, $key);
DI::pConfig()->delete($uid, $family, $key);
}
if ($key === 'show_on_profile') {
@ -143,7 +143,7 @@ function update_1191()
DI::pConfig()->set($uid, feature, forumlist_profile, $value);
}
PConfig::delete($uid, $family, $key);
DI::pConfig()->delete($uid, $family, $key);
}
if ($key === 'show_on_network') {
@ -151,7 +151,7 @@ function update_1191()
DI::pConfig()->set($uid, feature, forumlist_widget, $value);
}
PConfig::delete($uid, $family, $key);
DI::pConfig()->delete($uid, $family, $key);
}
}
}