From 3cc662aa63722f3d142fcc924614140a70ecc323 Mon Sep 17 00:00:00 2001 From: Friendika Date: Fri, 5 Nov 2010 05:01:54 -0700 Subject: [PATCH] friend/contact sidebar block --- boot.php | 48 ++++++++++++++++++++++++++++++++++-- mod/profile.php | 4 +++ view/profile.php | 2 -- view/theme/default/style.css | 15 +++++++++++ 4 files changed, 65 insertions(+), 4 deletions(-) diff --git a/boot.php b/boot.php index eb52fb2a25..5aeb9ea949 100644 --- a/boot.php +++ b/boot.php @@ -1369,7 +1369,7 @@ function like_puller($a,$item,&$arr,$mode) { return; }} - +if(! function_exists('get_mentions')) { function get_mentions($item) { $o = ''; if(! strlen($item['tag'])) @@ -1382,4 +1382,48 @@ function get_mentions($item) { $o .= "\t\t" . '' . "\r\n"; } return $o; -} \ No newline at end of file +}} + +if(! function_exists('contact_block')) { +function contact_block() { + $o = ''; + $a = get_app(); + if((! is_array($a->profile)) || ($a->profile['hide-friends'])) + return $o; + $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 ", + intval($a->profile['uid']) + ); + if(count($r)) { + $total = intval($r[0]['total']); + } + if(! $total) { + $o .= '

' . t('No contacts') . '

'; + return $o; + } + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 ORDER BY RAND() LIMIT 12", + intval($a->profile['uid']) + ); + if(count($r)) { + $o .= '

' . $total . ' ' . t('Contacts') . '

'; + foreach($r as $rr) { + $redirect_url = $a->get_baseurl() . '/redir/' . $rr['id']; + if(local_user() && ($rr['uid'] == local_user()) + && ($rr['network'] === 'dfrn')) { + $url = $redirect_url; + $sparkle = ' sparkle'; + } + else { + $url = $rr['url']; + $sparkle = ''; + } + + $o .= '
' . $rr['name'] . '
' . "\r\n"; + } + $o .= '
'; + $o .= ''; + + } + return $o; + +}} + diff --git a/mod/profile.php b/mod/profile.php index a3148eea3d..99c775c4ee 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -41,6 +41,10 @@ function profile_load(&$a, $username, $profile = 0) { $a->page['title'] = $a->profile['name']; $_SESSION['theme'] = $a->profile['theme']; + if(! (x($a->page,'aside'))) + $a->page['aside'] = ''; + $a->page['aside'] .= contact_block(); + return; }} diff --git a/view/profile.php b/view/profile.php index 1d036dc5cd..b59a12b715 100644 --- a/view/profile.php +++ b/view/profile.php @@ -23,8 +23,6 @@
  • Connect
  • - View Contacts'; ?> -
    diff --git a/view/theme/default/style.css b/view/theme/default/style.css index fd51e1d53c..42da72d6a6 100644 --- a/view/theme/default/style.css +++ b/view/theme/default/style.css @@ -616,6 +616,9 @@ input#dfrn-url { #view-contact-end { clear: both; } +#viewcontacts { + margin-top: 15px; +} #profile-edit-default-desc { color: #FF0000; border: 1px solid #FF8888; @@ -1780,3 +1783,15 @@ a.mail-list-link:hover { cursor: url('lock.cur'), pointer; /* cursor: pointer !important; */ } + +.contact-block-div { + float: left; + width: 52px; + height: 52px; +} +#contact-block-end { + clear: both; +} +.contact-block-link { + float: left; +} \ No newline at end of file