]> git.mxchange.org Git - friendica.git/blob - mod/nogroup.php
Merge pull request #3444 from annando/1705-mail-duplicates
[friendica.git] / mod / nogroup.php
1 <?php
2
3 use Friendica\App;
4
5 require_once('include/Contact.php');
6 require_once('include/socgraph.php');
7 require_once('include/contact_selectors.php');
8
9 function nogroup_init(App $a) {
10
11         if (! local_user()) {
12                 return;
13         }
14
15         require_once('include/group.php');
16         require_once('include/contact_widgets.php');
17
18         if (! x($a->page,'aside')) {
19                 $a->page['aside'] = '';
20         }
21
22         $a->page['aside'] .= group_side('contacts','group','extended',0,$contact_id);
23 }
24
25
26 function nogroup_content(App $a) {
27
28         if (! local_user()) {
29                 notice( t('Permission denied.') . EOL);
30                 return '';
31         }
32
33         require_once('include/Contact.php');
34         $r = contacts_not_grouped(local_user());
35         if (dbm::is_result($r)) {
36                 $a->set_pager_total($r[0]['total']);
37         }
38         $r = contacts_not_grouped(local_user(),$a->pager['start'],$a->pager['itemspage']);
39         if (dbm::is_result($r)) {
40                 foreach ($r as $rr) {
41
42                         $contact_details = get_contact_details_by_url($rr['url'], local_user(), $rr);
43
44                         $contacts[] = array(
45                                 'img_hover' => sprintf(t('Visit %s\'s profile [%s]'), $contact_details['name'], $rr['url']),
46                                 'edit_hover' => t('Edit contact'),
47                                 'photo_menu' => contact_photo_menu($rr),
48                                 'id' => $rr['id'],
49                                 'alt_text' => $alt_text,
50                                 'dir_icon' => $dir_icon,
51                                 'thumb' => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB),
52                                 'name' => $contact_details['name'],
53                                 'username' => $contact_details['name'],
54                                 'details'       => $contact_details['location'],
55                                 'tags'          => $contact_details['keywords'],
56                                 'about'         => $contact_details['about'],
57                                 'sparkle' => $sparkle,
58                                 'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
59                                 'url' => $url,
60                                 'network' => network_to_name($rr['network'], $url),
61                         );
62                 }
63         }
64
65         $tpl = get_markup_template("nogroup-template.tpl");
66         $o .= replace_macros($tpl, array(
67                 '$header' => t('Contacts who are not members of a group'),
68                 '$contacts' => $contacts,
69                 '$paginate' => paginate($a),
70         ));
71
72         return $o;
73
74 }