X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnogroup.php;h=75781765e05b7e4dd785313e34b77ff169baa9d2;hb=6e7c6ab0fa46dc3ab2f35326bc1b2c747377d509;hp=9f5425d9eb7c36604432d2106b895cd8ef75b723;hpb=390d5706f46ce58cbed24b292d5c1f1b9789a8a8;p=friendica.git diff --git a/mod/nogroup.php b/mod/nogroup.php index 9f5425d9eb..75781765e0 100644 --- a/mod/nogroup.php +++ b/mod/nogroup.php @@ -3,20 +3,18 @@ * @file mod/nogroup.php */ use Friendica\App; +use Friendica\Content\ContactSelector; +use Friendica\Core\L10n; use Friendica\Database\DBM; use Friendica\Model\Contact; use Friendica\Model\Group; -require_once 'include/contact_selectors.php'; - function nogroup_init(App $a) { if (! local_user()) { return; } - require_once 'include/contact_widgets.php'; - if (! x($a->page, 'aside')) { $a->page['aside'] = ''; } @@ -27,7 +25,7 @@ function nogroup_init(App $a) function nogroup_content(App $a) { if (! local_user()) { - notice(t('Permission denied.') . EOL); + notice(L10n::t('Permission denied.') . EOL); return ''; } @@ -40,9 +38,9 @@ function nogroup_content(App $a) foreach ($r as $rr) { $contact_details = Contact::getDetailsByURL($rr['url'], local_user(), $rr); - $contacts[] = array( - 'img_hover' => t('Visit %s\'s profile [%s]', $contact_details['name'], $rr['url']), - 'edit_hover' => t('Edit contact'), + $contacts[] = [ + 'img_hover' => L10n::t('Visit %s\'s profile [%s]', $contact_details['name'], $rr['url']), + 'edit_hover' => L10n::t('Edit contact'), 'photo_menu' => Contact::photoMenu($rr), 'id' => $rr['id'], 'thumb' => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB), @@ -53,18 +51,18 @@ function nogroup_content(App $a) 'about' => $contact_details['about'], 'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']), 'url' => $rr['url'], - 'network' => network_to_name($rr['network'], $rr['url']), - ); + 'network' => ContactSelector::networkToName($rr['network'], $rr['url']), + ]; } } $tpl = get_markup_template("nogroup-template.tpl"); $o = replace_macros( $tpl, - array( - '$header' => t('Contacts who are not members of a group'), + [ + '$header' => L10n::t('Contacts who are not members of a group'), '$contacts' => $contacts, - '$paginate' => paginate($a)) + '$paginate' => paginate($a)] ); return $o;