X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnogroup.php;h=438c4ff4406bc4a472136b241ec4c411f7784e38;hb=3fc5c1ad840f98926319478a855dab3686a0ace3;hp=24d99a59b6c01a0c071828c0f6ce8ede42b93fc3;hpb=f519b907372e647e1c26408af1943892e725b92e;p=friendica.git diff --git a/mod/nogroup.php b/mod/nogroup.php index 24d99a59b6..438c4ff440 100644 --- a/mod/nogroup.php +++ b/mod/nogroup.php @@ -1,66 +1,28 @@ page,'aside')) - $a->page['aside'] = ''; - - $a->page['aside'] .= group_side('contacts','group',false,0,$contact_id); + } } - -function nogroup_content(&$a) { - - if(! local_user()) { - notice( t('Permission denied.') . EOL); +function nogroup_content(App $a) +{ + if (! local_user()) { + notice(L10n::t('Permission denied.') . EOL); return ''; } - require_once('include/Contact.php'); - $r = contacts_not_grouped(local_user()); - if(count($r)) { - $a->set_pager_total($r[0]['total']); - } - $r = contacts_not_grouped(local_user(),$a->pager['start'],$a->pager['itemspage']); - if(count($r)) { - foreach($r as $rr) { - - - $contacts[] = array( - 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']), - 'edit_hover' => t('Edit contact'), - 'photo_menu' => contact_photo_menu($rr), - 'id' => $rr['id'], - 'alt_text' => $alt_text, - 'dir_icon' => $dir_icon, - 'thumb' => $rr['thumb'], - 'name' => $rr['name'], - 'username' => $rr['name'], - 'sparkle' => $sparkle, - 'itemurl' => $rr['url'], - 'url' => $url, - 'network' => network_to_name($rr['network']), - ); - } - } - - $tpl = get_markup_template("nogroup-template.tpl"); - $o .= replace_macros($tpl, array( - '$header' => t('Contacts who are not members of a group'), - '$contacts' => $contacts, - '$paginate' => paginate($a), - )); - - return $o; - + $a->internalRedirect('group/none'); }