2 require_once('include/contact_selectors.php');
4 function viewcontacts_init(&$a) {
6 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
10 profile_load($a,$a->argv[1]);
14 function viewcontacts_content(&$a) {
16 require_once("mod/proxy.php");
18 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
19 notice( t('Public access denied.') . EOL);
23 if(((! count($a->profile)) || ($a->profile['hide-friends']))) {
24 notice( t('Permission denied.') . EOL);
29 $r = q("SELECT COUNT(*) as `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ",
30 intval($a->profile['uid'])
33 $a->set_pager_total($r[0]['total']);
35 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ORDER BY `name` ASC LIMIT %d , %d ",
36 intval($a->profile['uid']),
37 intval($a->pager['start']),
38 intval($a->pager['itemspage'])
41 info( t('No contacts.') . EOL );
53 // route DFRN profiles through the redirect
55 $is_owner = ((local_user() && ($a->profile['profile_uid'] == local_user())) ? true : false);
57 if($is_owner && ($rr['network'] === NETWORK_DFRN) && ($rr['rel']))
58 $url = 'redir/' . $rr['id'];
64 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']),
65 'thumb' => proxy_url($rr['thumb']),
66 'name' => substr($rr['name'],0,20),
67 'username' => $rr['name'],
70 'itemurl' => $rr['url'],
71 'network' => network_to_name($rr['network']),
76 $tpl = get_markup_template("viewcontact_template.tpl");
77 $o .= replace_macros($tpl, array(
78 '$title' => t('View Contacts'),
79 '$contacts' => $contacts,
80 '$paginate' => paginate($a),