From f68f1d52556f02a85aba9ec8b09ffabbab008446 Mon Sep 17 00:00:00 2001 From: ewinslow Date: Tue, 1 Mar 2011 06:38:42 +0000 Subject: Refs #2895: River items now emit a "river" menu. Not confident on the name, just trying to keep things short and sweet. git-svn-id: http://code.elgg.org/elgg/trunk@8532 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/river/item/controls.php | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/views/default/river/item/controls.php b/views/default/river/item/controls.php index 9c3305635..32653452b 100644 --- a/views/default/river/item/controls.php +++ b/views/default/river/item/controls.php @@ -13,40 +13,39 @@ if (elgg_is_logged_in()) { if ($vars['item']->annotation_id == 0) { // comments if ($object->canComment()) { - $params = array( + elgg_register_menu_item('river', array( + 'name' => 'comment', 'href' => '#', 'text' => elgg_echo('generic_comments:text'), 'class' => "elgg-toggler elgg-toggles-comments-add-{$object->getGUID()}", - ); - echo elgg_view('output/url', $params); + )); } // like this if ($object->canAnnotate(0, 'likes')) { if (!elgg_annotation_exists($object->getGUID(), 'likes')) { - $url = "action/likes/add?guid={$object->getGUID()}"; - $params = array( - 'href' => $url, + + elgg_register_menu_item('river', array( + 'name' => 'likes', + 'href' => "action/likes/add?guid={$object->getGUID()}", 'text' => elgg_echo('likes:likethis'), 'is_action' => true, - ); - echo elgg_view('output/url', $params); + )); } else { - $options = array( + $likes = elgg_get_annotations(array( 'guid' => $guid, 'annotation_name' => 'likes', 'owner_guid' => elgg_get_logged_in_user_guid() - ); - $likes = elgg_get_annotations($options); - $url = elgg_get_site_url() . "action/likes/delete?annotation_id={$likes[0]->id}"; - $params = array( - 'href' => $url, + )); + + elgg_register_menu_item('river', array( + 'href' => "action/likes/delete?annotation_id={$likes[0]->id}", 'text' => elgg_echo('likes:remove'), 'is_action' => true, - ); - echo elgg_view('output/url', $params); + )); } } } + echo elgg_view_menu('river', array('sort_by' => 'weight', 'item' => $vars['item'])); } \ No newline at end of file -- cgit v1.2.3