From 01afda7ed87e7def6a411d871daf49522e977b26 Mon Sep 17 00:00:00 2001 From: cash Date: Thu, 24 Feb 2011 00:12:17 +0000 Subject: organized the river views according to the subview pattern git-svn-id: http://code.elgg.org/elgg/trunk@8452 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/river/item/controls.php | 52 +++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 views/default/river/item/controls.php (limited to 'views/default/river/item/controls.php') diff --git a/views/default/river/item/controls.php b/views/default/river/item/controls.php new file mode 100644 index 000000000..9c3305635 --- /dev/null +++ b/views/default/river/item/controls.php @@ -0,0 +1,52 @@ +getObjectEntity(); + +if (elgg_is_logged_in()) { + // comments and non-objects cannot be commented on or liked + if ($vars['item']->annotation_id == 0) { + // comments + if ($object->canComment()) { + $params = array( + '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, + 'text' => elgg_echo('likes:likethis'), + 'is_action' => true, + ); + echo elgg_view('output/url', $params); + } else { + $options = 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, + 'text' => elgg_echo('likes:remove'), + 'is_action' => true, + ); + echo elgg_view('output/url', $params); + } + } + } + +} \ No newline at end of file -- cgit v1.2.3