X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Funfollow.php;h=6059c27ab7e2403c0a05a657dd7b480ddc48b532;hb=62a61a95d3e1357a64b157136490c82aa4495d3e;hp=b84e1079d27923b135ad8826a317fea89907fc38;hpb=35d334dd26cdddfe019d41750ee689e4bfe94cbe;p=friendica.git diff --git a/mod/unfollow.php b/mod/unfollow.php index b84e1079d2..6059c27ab7 100644 --- a/mod/unfollow.php +++ b/mod/unfollow.php @@ -3,6 +3,7 @@ * @file mod/unfollow.php */ use Friendica\App; +use Friendica\Core\L10n; use Friendica\Core\System; use Friendica\Database\DBM; use Friendica\Model\Contact; @@ -11,7 +12,7 @@ use Friendica\Model\Profile; function unfollow_post(App $a) { if (!local_user()) { - notice(t('Permission denied.') . EOL); + notice(L10n::t('Permission denied.') . EOL); goaway($_SESSION['return_url']); // NOTREACHED } @@ -30,30 +31,30 @@ function unfollow_post(App $a) $contact = dba::selectFirst('contact', [], $condition); if (!DBM::is_result($contact)) { - notice(t("Contact wasn't found or can't be unfollowed.")); + notice(L10n::t("Contact wasn't found or can't be unfollowed.")); } else { - if (in_array($contact['network'], array(NETWORK_OSTATUS, NETWORK_DIASPORA))) { + if (in_array($contact['network'], [NETWORK_OSTATUS, NETWORK_DIASPORA, NETWORK_DFRN])) { $r = q("SELECT `contact`.*, `user`.* FROM `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid` WHERE `user`.`uid` = %d AND `contact`.`self` LIMIT 1", intval($uid) ); - if (DBM::is_result($r)) { + if (DBM::is_result($r)) { Contact::terminateFriendship($r[0], $contact); } } - dba::update('contact', array('rel' => CONTACT_IS_FOLLOWER), array('id' => $contact['id'])); + dba::update('contact', ['rel' => CONTACT_IS_FOLLOWER], ['id' => $contact['id']]); - info(t('Contact unfollowed').EOL); + info(L10n::t('Contact unfollowed').EOL); goaway(System::baseUrl().'/contacts/'.$contact['id']); } goaway($return_url); // NOTREACHED } -function unfollow_content(App $a) { - +function unfollow_content(App $a) +{ if (! local_user()) { - notice(t('Permission denied.') . EOL); + notice(L10n::t('Permission denied.') . EOL); goaway($_SESSION['return_url']); // NOTREACHED } @@ -61,7 +62,7 @@ function unfollow_content(App $a) { $uid = local_user(); $url = notags(trim($_REQUEST['url'])); - $submit = t('Submit Request'); + $submit = L10n::t('Submit Request'); $condition = ["`uid` = ? AND `rel` = ? AND (`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?", local_user(), CONTACT_IS_FRIEND, normalise_link($url), @@ -69,13 +70,13 @@ function unfollow_content(App $a) { $contact = dba::selectFirst('contact', ['url', 'network', 'addr', 'name'], $condition); if (!DBM::is_result($contact)) { - notice(t("You aren't a friend of this contact.").EOL); + notice(L10n::t("You aren't a friend of this contact.").EOL); $submit = ""; // NOTREACHED } - if (!in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_OSTATUS))) { - notice(t("Unfollowing is currently not supported by your network.").EOL); + if (!in_array($contact['network'], [NETWORK_DIASPORA, NETWORK_OSTATUS, NETWORK_DFRN])) { + notice(L10n::t("Unfollowing is currently not supported by your network.").EOL); $submit = ""; // NOTREACHED } @@ -86,7 +87,7 @@ function unfollow_content(App $a) { $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($uid)); if (!$r) { - notice(t('Permission denied.') . EOL); + notice(L10n::t('Permission denied.') . EOL); goaway($_SESSION['return_url']); // NOTREACHED } @@ -96,9 +97,9 @@ function unfollow_content(App $a) { // Makes the connection request for friendica contacts easier $_SESSION["fastlane"] = $contact["url"]; - $header = t("Disconnect/Unfollow"); + $header = L10n::t("Disconnect/Unfollow"); - $o = replace_macros($tpl,array( + $o = replace_macros($tpl, [ '$header' => htmlentities($header), '$desc' => "", '$pls_answer' => "", @@ -109,26 +110,26 @@ function unfollow_content(App $a) { '$statusnet' => "", '$diaspora' => "", '$diasnote' => "", - '$your_address' => t('Your Identity Address:'), + '$your_address' => L10n::t('Your Identity Address:'), '$invite_desc' => "", '$emailnet' => "", '$submit' => $submit, - '$cancel' => t('Cancel'), + '$cancel' => L10n::t('Cancel'), '$nickname' => "", '$name' => $contact["name"], '$url' => $contact["url"], - '$zrl' => Profile::zrl($contact["url"]), - '$url_label' => t("Profile URL"), + '$zrl' => Contact::magicLink($contact["url"]), + '$url_label' => L10n::t("Profile URL"), '$myaddr' => $myaddr, '$request' => $request, '$keywords' => "", '$keywords_label' => "" - )); + ]); $a->page['aside'] = ""; Profile::load($a, "", 0, Contact::getDetailsByURL($contact["url"])); - $o .= replace_macros(get_markup_template('section_title.tpl'), array('$title' => t('Status Messages and Posts'))); + $o .= replace_macros(get_markup_template('section_title.tpl'), ['$title' => L10n::t('Status Messages and Posts')]); // Show last public posts $o .= Contact::getPostsFromUrl($contact["url"]);