X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnogroup.php;h=75781765e05b7e4dd785313e34b77ff169baa9d2;hb=1c3bed1777ea51fabdf1ce91c1c34b7ed0c4b04c;hp=c75b595c363967f6fbfe0324117b288818e31415;hpb=949507d6881b2a24df1d3bbb43c63782f7ac9d49;p=friendica.git diff --git a/mod/nogroup.php b/mod/nogroup.php index c75b595c36..75781765e0 100644 --- a/mod/nogroup.php +++ b/mod/nogroup.php @@ -1,72 +1,69 @@ page,'aside')) { + if (! x($a->page, 'aside')) { $a->page['aside'] = ''; } - $a->page['aside'] .= group_side('contacts','group','extended',0,$contact_id); + $a->page['aside'] .= Group::sidebarWidget('contacts', 'group', 'extended'); } - -function nogroup_content(&$a) { - +function nogroup_content(App $a) +{ if (! local_user()) { - notice( t('Permission denied.') . EOL); + notice(L10n::t('Permission denied.') . EOL); return ''; } - require_once('include/Contact.php'); - $r = contacts_not_grouped(local_user()); - if (dbm::is_result($r)) { + $r = Contact::getUngroupedList(local_user()); + if (DBM::is_result($r)) { $a->set_pager_total($r[0]['total']); } - $r = contacts_not_grouped(local_user(),$a->pager['start'],$a->pager['itemspage']); - if (dbm::is_result($r)) { + $r = Contact::getUngroupedList(local_user(), $a->pager['start'], $a->pager['itemspage']); + if (DBM::is_result($r)) { foreach ($r as $rr) { + $contact_details = Contact::getDetailsByURL($rr['url'], local_user(), $rr); - $contact_details = get_contact_details_by_url($rr['url'], local_user(), $rr); - - $contacts[] = array( - 'img_hover' => sprintf(t('Visit %s\'s profile [%s]'), $contact_details['name'], $rr['url']), - 'edit_hover' => t('Edit contact'), - 'photo_menu' => contact_photo_menu($rr), + $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'], - 'alt_text' => $alt_text, - 'dir_icon' => $dir_icon, 'thumb' => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB), 'name' => $contact_details['name'], 'username' => $contact_details['name'], 'details' => $contact_details['location'], 'tags' => $contact_details['keywords'], 'about' => $contact_details['about'], - 'sparkle' => $sparkle, 'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']), - 'url' => $url, - 'network' => network_to_name($rr['network'], $url), - ); + 'url' => $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'), + $o = replace_macros( + $tpl, + [ + '$header' => L10n::t('Contacts who are not members of a group'), '$contacts' => $contacts, - '$paginate' => paginate($a), - )); + '$paginate' => paginate($a)] + ); return $o; - }