diff options
author | marijus <mario@localhost.localdomain> | 2013-12-03 14:00:46 +0100 |
---|---|---|
committer | marijus <mario@localhost.localdomain> | 2013-12-03 14:00:46 +0100 |
commit | f49837d7ee16a7379eed40358ee099f137ce81ac (patch) | |
tree | 5d00640dd86d86db8ec1d384de5b6473a83a2846 /mod/nogroup.php | |
parent | d525d1c26f2b67579ff5911dc81958c4fa1e9c6f (diff) | |
parent | d96f5e2c081b582a77097b06706416d5ff371211 (diff) | |
download | volse-hubzilla-f49837d7ee16a7379eed40358ee099f137ce81ac.tar.gz volse-hubzilla-f49837d7ee16a7379eed40358ee099f137ce81ac.tar.bz2 volse-hubzilla-f49837d7ee16a7379eed40358ee099f137ce81ac.zip |
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'mod/nogroup.php')
-rw-r--r-- | mod/nogroup.php | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/mod/nogroup.php b/mod/nogroup.php deleted file mode 100644 index 31ccaadbf..000000000 --- a/mod/nogroup.php +++ /dev/null @@ -1,65 +0,0 @@ -<?php - -require_once('include/Contact.php'); -require_once('include/socgraph.php'); -require_once('include/contact_selectors.php'); - -function nogroup_init(&$a) { - - if(! local_user()) - return; - - require_once('include/group.php'); - require_once('include/contact_widgets.php'); - - if(! x($a->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); - 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'], - 'link' => $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; - -} |