2010-07-29 03:24:07 +02:00
< ? php
2012-02-23 11:22:32 +01:00
require_once ( 'include/contact_selectors.php' );
2010-07-29 03:24:07 +02:00
function viewcontacts_init ( & $a ) {
2011-04-22 04:12:22 +02:00
if (( get_config ( 'system' , 'block_public' )) && ( ! local_user ()) && ( ! remote_user ())) {
return ;
}
2010-07-29 03:24:07 +02:00
2011-04-22 04:12:22 +02:00
profile_load ( $a , $a -> argv [ 1 ]);
2010-07-29 03:24:07 +02:00
}
function viewcontacts_content ( & $a ) {
2011-04-22 04:12:22 +02:00
if (( get_config ( 'system' , 'block_public' )) && ( ! local_user ()) && ( ! remote_user ())) {
notice ( t ( 'Public access denied.' ) . EOL );
return ;
}
2010-07-29 03:24:07 +02:00
if ((( ! count ( $a -> profile )) || ( $a -> profile [ 'hide-friends' ]))) {
notice ( t ( 'Permission denied.' ) . EOL );
return ;
}
2012-04-28 02:17:58 +02:00
$r = q ( " SELECT COUNT(*) as `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 " ,
2010-07-29 03:24:07 +02:00
intval ( $a -> profile [ 'uid' ])
);
if ( count ( $r ))
2010-07-30 15:09:20 +02:00
$a -> set_pager_total ( $r [ 0 ][ 'total' ]);
2010-07-29 03:24:07 +02:00
2012-04-28 02:17:58 +02:00
$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 " ,
2010-07-29 03:24:07 +02:00
intval ( $a -> profile [ 'uid' ]),
intval ( $a -> pager [ 'start' ]),
intval ( $a -> pager [ 'itemspage' ])
);
if ( ! count ( $r )) {
2011-05-23 11:39:57 +02:00
info ( t ( 'No contacts.' ) . EOL );
2010-07-29 03:24:07 +02:00
return $o ;
}
2012-02-23 11:22:32 +01:00
$contacts = array ();
2010-07-29 03:24:07 +02:00
foreach ( $r as $rr ) {
if ( $rr [ 'self' ])
continue ;
2011-06-06 06:05:55 +02: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' ];
2012-03-30 05:58:32 +02:00
else
$url = zrl ( $url );
2011-06-06 06:05:55 +02:00
2012-02-23 11:22:32 +01:00
$contacts [] = array (
'id' => $rr [ 'id' ],
'img_hover' => sprintf ( t ( 'Visit %s\'s profile [%s]' ), $rr [ 'name' ], $rr [ 'url' ]),
'thumb' => $rr [ 'thumb' ],
'name' => substr ( $rr [ 'name' ], 0 , 20 ),
'username' => $rr [ 'name' ],
'url' => $url ,
'sparkle' => '' ,
2012-02-28 19:10:27 +01:00
'itemurl' => $rr [ 'url' ],
'network' => network_to_name ( $rr [ 'network' ]),
2012-02-23 11:22:32 +01:00
);
2010-07-29 03:24:07 +02:00
}
2012-02-23 11:22:32 +01:00
$tpl = get_markup_template ( " viewcontact_template.tpl " );
$o .= replace_macros ( $tpl , array (
'$title' => t ( 'View Contacts' ),
'$contacts' => $contacts ,
'$paginate' => paginate ( $a ),
));
2010-07-29 03:24:07 +02:00
return $o ;
2011-05-23 11:39:57 +02:00
}