From f3572aec7f159231ca2b63be1d2c5466a3ff7208 Mon Sep 17 00:00:00 2001 From: csarven Date: Sat, 15 Nov 2008 21:27:35 -0500 Subject: Nudge feature darcs-hash:20081116022735-eefa4-366f6deb85942f859ebd532e477b57737bcafbf8.gz --- actions/showstream.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'actions/showstream.php') diff --git a/actions/showstream.php b/actions/showstream.php index 9db31c108..56858b477 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -64,7 +64,6 @@ class ShowstreamAction extends StreamAction { } function show_top($user) { - $cur = common_current_user(); if ($cur && $cur->id == $user->id) { @@ -167,6 +166,10 @@ class ShowstreamAction extends StreamAction { 'width' => AVATAR_PROFILE_SIZE, 'height' => AVATAR_PROFILE_SIZE, 'alt' => $profile->nickname)); + + common_element_start('ul', array('id' => 'profile_actions')); + + common_element_start('li', array('id' => 'profile_subscribe')); $cur = common_current_user(); if ($cur) { if ($cur->id != $profile->id) { @@ -179,13 +182,20 @@ class ShowstreamAction extends StreamAction { } else { $this->show_remote_subscribe_link($profile); } + common_element_end('li'); $user = User::staticGet('id', $profile->id); if ($cur && $cur->id != $user->id && $cur->mutuallySubscribed($user)) { + common_element_start('li', array('id' => 'profile_send_a_new_message')); common_element('a', array('href' => common_local_url('newmessage', array('to' => $user->id))), _('Send a message')); + common_element_end('li'); + common_element_start('li', array('id' => 'profile_nudge')); + common_nudge_form($user); + common_element_end('li'); } + common_element_end('ul'); common_element_end('div'); @@ -475,7 +485,8 @@ class ShowstreamAction extends StreamAction { common_raw('×'); common_element_end('a'); } + common_element_end('p'); common_element_end('li'); } -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf