2010-07-28 21:24:07 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function viewcontacts_init(&$a) {
|
|
|
|
|
2011-04-21 22:12:22 -04:00
|
|
|
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
|
|
|
|
return;
|
|
|
|
}
|
2010-07-28 21:24:07 -04:00
|
|
|
|
2011-04-21 22:12:22 -04:00
|
|
|
profile_load($a,$a->argv[1]);
|
2010-07-28 21:24:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function viewcontacts_content(&$a) {
|
|
|
|
|
2011-04-21 22:12:22 -04:00
|
|
|
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
|
|
|
|
notice( t('Public access denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-07-28 21:24:07 -04:00
|
|
|
if(((! count($a->profile)) || ($a->profile['hide-friends']))) {
|
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '<h3>' . t('View Contacts') . '</h3>';
|
|
|
|
|
|
|
|
|
|
|
|
$r = q("SELECT COUNT(*) as `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0",
|
|
|
|
intval($a->profile['uid'])
|
|
|
|
);
|
|
|
|
if(count($r))
|
2010-07-30 09:09:20 -04:00
|
|
|
$a->set_pager_total($r[0]['total']);
|
2010-07-28 21:24:07 -04:00
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 ORDER BY `name` ASC LIMIT %d , %d ",
|
|
|
|
intval($a->profile['uid']),
|
|
|
|
intval($a->pager['start']),
|
|
|
|
intval($a->pager['itemspage'])
|
|
|
|
);
|
|
|
|
if(! count($r)) {
|
2011-05-23 05:39:57 -04:00
|
|
|
info( t('No contacts.') . EOL );
|
2010-07-28 21:24:07 -04:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2011-05-11 07:37:13 -04:00
|
|
|
$tpl = get_markup_template("viewcontact_template.tpl");
|
2010-07-28 21:24:07 -04:00
|
|
|
|
|
|
|
foreach($r as $rr) {
|
|
|
|
if($rr['self'])
|
|
|
|
continue;
|
|
|
|
|
2011-06-06 00:05:55 -04:00
|
|
|
$url = $rr['url'];
|
|
|
|
|
|
|
|
// route DFRN profiles through the redirect
|
|
|
|
|
|
|
|
$is_owner = ((local_user() && ($a->profile['profile_uid'] == local_user())) ? true : false);
|
|
|
|
|
|
|
|
if($is_owner && ($rr['network'] === NETWORK_DFRN) && ($rr['rel']))
|
|
|
|
$url = 'redir/' . $rr['id'];
|
|
|
|
|
2010-07-28 21:24:07 -04:00
|
|
|
$o .= replace_macros($tpl, array(
|
|
|
|
'$id' => $rr['id'],
|
2011-06-06 00:05:55 -04:00
|
|
|
'$alt_text' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']),
|
2010-07-28 21:24:07 -04:00
|
|
|
'$thumb' => $rr['thumb'],
|
2011-02-01 17:09:47 -05:00
|
|
|
'$name' => substr($rr['name'],0,20),
|
2011-03-10 18:22:21 -05:00
|
|
|
'$username' => $rr['name'],
|
2011-06-06 00:05:55 -04:00
|
|
|
'$url' => $url
|
2010-07-28 21:24:07 -04:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '<div id="view-contact-end"></div>';
|
|
|
|
|
|
|
|
$o .= paginate($a);
|
|
|
|
|
|
|
|
return $o;
|
2011-05-23 05:39:57 -04:00
|
|
|
}
|