3 require_once('include/Contact.php');
4 require_once('include/socgraph.php');
5 require_once('include/contact_selectors.php');
7 function nogroup_init(App $a) {
13 require_once('include/group.php');
14 require_once('include/contact_widgets.php');
16 if (! x($a->page,'aside')) {
17 $a->page['aside'] = '';
20 $a->page['aside'] .= group_side('contacts','group','extended',0,$contact_id);
24 function nogroup_content(App $a) {
27 notice( t('Permission denied.') . EOL);
31 require_once('include/Contact.php');
32 $r = contacts_not_grouped(local_user());
33 if (dbm::is_result($r)) {
34 $a->set_pager_total($r[0]['total']);
36 $r = contacts_not_grouped(local_user(),$a->pager['start'],$a->pager['itemspage']);
37 if (dbm::is_result($r)) {
40 $contact_details = get_contact_details_by_url($rr['url'], local_user(), $rr);
43 'img_hover' => sprintf(t('Visit %s\'s profile [%s]'), $contact_details['name'], $rr['url']),
44 'edit_hover' => t('Edit contact'),
45 'photo_menu' => contact_photo_menu($rr),
47 'alt_text' => $alt_text,
48 'dir_icon' => $dir_icon,
49 'thumb' => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB),
50 'name' => $contact_details['name'],
51 'username' => $contact_details['name'],
52 'details' => $contact_details['location'],
53 'tags' => $contact_details['keywords'],
54 'about' => $contact_details['about'],
55 'sparkle' => $sparkle,
56 'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
58 'network' => network_to_name($rr['network'], $url),
63 $tpl = get_markup_template("nogroup-template.tpl");
64 $o .= replace_macros($tpl, array(
65 '$header' => t('Contacts who are not members of a group'),
66 '$contacts' => $contacts,
67 '$paginate' => paginate($a),