]> git.mxchange.org Git - friendica.git/blobdiff - mod/fsuggest.php
Move L10n::t() calls to DI::l10n()->t() calls
[friendica.git] / mod / fsuggest.php
index 2bddf48133103510becfb1c90290c86a2c820059..f7c1930cca7db2a2b63df548a79ee8310cf292d3 100644 (file)
@@ -29,7 +29,7 @@ function fsuggest_post(App $a)
 
        // We do query the "uid" as well to ensure that it is our contact
        if (!DBA::exists('contact', ['id' => $contact_id, 'uid' => local_user()])) {
-               notice(L10n::t('Contact not found.') . EOL);
+               notice(DI::l10n()->t('Contact not found.') . EOL);
                return;
        }
 
@@ -41,11 +41,11 @@ function fsuggest_post(App $a)
        // We do query the "uid" as well to ensure that it is our contact
        $contact = DBA::selectFirst('contact', ['name', 'url', 'request', 'avatar'], ['id' => $suggest_contact_id, 'uid' => local_user()]);
        if (!DBA::isResult($contact)) {
-               notice(L10n::t('Suggested contact not found.') . EOL);
+               notice(DI::l10n()->t('Suggested contact not found.') . EOL);
                return;
        }
 
-       $note = Strings::escapeHtml(trim(defaults($_POST, 'note', '')));
+       $note = Strings::escapeHtml(trim($_POST['note'] ?? ''));
 
        $fields = ['uid' => local_user(),'cid' => $contact_id, 'name' => $contact['name'],
                'url' => $contact['url'], 'request' => $contact['request'],
@@ -54,13 +54,13 @@ function fsuggest_post(App $a)
 
        Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::SUGGESTION, DBA::lastInsertId());
 
-       info(L10n::t('Friend suggestion sent.') . EOL);
+       info(DI::l10n()->t('Friend suggestion sent.') . EOL);
 }
 
 function fsuggest_content(App $a)
 {
        if (! local_user()) {
-               notice(L10n::t('Permission denied.') . EOL);
+               notice(DI::l10n()->t('Permission denied.') . EOL);
                return;
        }
 
@@ -72,13 +72,13 @@ function fsuggest_content(App $a)
 
        $contact = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => local_user()]);
        if (! DBA::isResult($contact)) {
-               notice(L10n::t('Contact not found.') . EOL);
+               notice(DI::l10n()->t('Contact not found.') . EOL);
                return;
        }
 
-       $o = '<h3>' . L10n::t('Suggest Friends') . '</h3>';
+       $o = '<h3>' . DI::l10n()->t('Suggest Friends') . '</h3>';
 
-       $o .= '<div id="fsuggest-desc" >' . L10n::t('Suggest a friend for %s', $contact['name']) . '</div>';
+       $o .= '<div id="fsuggest-desc" >' . DI::l10n()->t('Suggest a friend for %s', $contact['name']) . '</div>';
 
        $o .= '<form id="fsuggest-form" action="fsuggest/' . $contact_id . '" method="post" >';
 
@@ -89,7 +89,7 @@ function fsuggest_content(App $a)
        );
 
 
-       $o .= '<div id="fsuggest-submit-wrapper"><input id="fsuggest-submit" type="submit" name="submit" value="' . L10n::t('Submit') . '" /></div>';
+       $o .= '<div id="fsuggest-submit-wrapper"><input id="fsuggest-submit" type="submit" name="submit" value="' . DI::l10n()->t('Submit') . '" /></div>';
        $o .= '</form>';
 
        return $o;