diff options
author | zottel <github@zottel.net> | 2012-05-02 08:11:52 +0200 |
---|---|---|
committer | zottel <github@zottel.net> | 2012-05-02 08:11:52 +0200 |
commit | 6000e7f30d1193dada903eaf0e6f44149a3dde33 (patch) | |
tree | 9b9f482f611b6dd91866518387b79140c6567be7 /include/contact_widgets.php | |
parent | 2e2bb5e8b0d2ab4a732cafd2ada30a76c4883177 (diff) | |
parent | becdb1f5085f2561b8b0acebbdbf43e4a81d50da (diff) | |
download | volse-hubzilla-6000e7f30d1193dada903eaf0e6f44149a3dde33.tar.gz volse-hubzilla-6000e7f30d1193dada903eaf0e6f44149a3dde33.tar.bz2 volse-hubzilla-6000e7f30d1193dada903eaf0e6f44149a3dde33.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'include/contact_widgets.php')
-rw-r--r-- | include/contact_widgets.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php index 96b02f293..cfe27c5c9 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -133,3 +133,47 @@ function categories_widget($baseurl,$selected = '') { )); } +function common_friends_visitor_widget($profile_uid) { + + $a = get_app(); + + if(local_user() == $profile_uid) + return; + + $cid = $zcid = 0; + + if(can_write_wall($a,$profile_uid)) + $cid = local_user(); + else { + if(get_my_url()) { + $r = q("select id from gcontact where nurl = '%s' limit 1", + dbesc(normalise_link(get_my_url())) + ); + if(count($r)) + $zcid = $r[0]['id']; + } + } + + if($cid == 0 && $zcid == 0) + return; + + require_once('include/socgraph.php'); + + if($cid) + $t = count_common_friends($profile_uid,$cid); + else + $t = count_common_friends($profile_uid,$cid); + if(! $t) + return; + + if($cid) + $r = common_friends($profile_uid,$cid,5); + else + $r = common_friends_zcid($profile_uid,$zcid); + + return replace_macros(get_markup_template('remote_friends_common.tpl'), array( + '$desc' => sprintf( tt("%d friend in common", "%d friends in common", $t), $t), + '$items' => $r + )); + +};
\ No newline at end of file |