aboutsummaryrefslogtreecommitdiff
path: root/mod/bookmarks/views
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-17 12:23:35 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-17 12:23:35 +0000
commit152a6ae4f00f6e0407d9a7ba04ae0000a818c554 (patch)
tree313404e4f91a1328d8ebcbc9d9b8e41ecb968d53 /mod/bookmarks/views
parent31867d1a44f87c775014c9f9c0b8fd546d7c4ba9 (diff)
downloadelgg-152a6ae4f00f6e0407d9a7ba04ae0000a818c554.tar.gz
elgg-152a6ae4f00f6e0407d9a7ba04ae0000a818c554.tar.bz2
supporting putting content in groups in for river views and added file river code
git-svn-id: http://code.elgg.org/elgg/trunk@7658 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/bookmarks/views')
-rw-r--r--mod/bookmarks/views/default/river/object/bookmarks/create.php36
1 files changed, 12 insertions, 24 deletions
diff --git a/mod/bookmarks/views/default/river/object/bookmarks/create.php b/mod/bookmarks/views/default/river/object/bookmarks/create.php
index f30097dd9..bd07db089 100644
--- a/mod/bookmarks/views/default/river/object/bookmarks/create.php
+++ b/mod/bookmarks/views/default/river/object/bookmarks/create.php
@@ -13,35 +13,23 @@ $params = array(
);
$link = elgg_view('output/url', $params);
+$group_string = '';
+$container = $object->getContainerEntity();
+if ($container instanceof ElggGroup) {
+ $params = array(
+ 'href' => $container->getURL(),
+ 'text' => $container->name,
+ );
+ $group_link = elgg_view('output/url', $params);
+ $group_string = elgg_echo('river:ingroup', array($group_link));
+}
+
echo elgg_echo('bookmarks:river:create');
-echo " $link";
+echo " $link $group_string";
if ($excerpt) {
echo '<div class="elgg-river-content">';
echo $excerpt;
echo '</div>';
}
-
-return true;
-/**
- * Elgg bookmark river entry view
- */
-
-$performed_by = get_entity($vars['item']->subject_guid); // $statement->getSubject();
-$object = get_entity($vars['item']->object_guid);
-$is_group = get_entity($object->container_guid);
-$url = $object->getURL();
-$url = "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a>";
-$string = elgg_echo("bookmarks:river:created", array($url)) . " ";
-$string .= "<a href=\"" . $object->address . "\">" . $object->title . "</a>";
-if (($is_group instanceof ElggGroup) && (elgg_get_context() != 'groups')){
- $string .= " " . elgg_echo('bookmarks:ingroup') . " <a href=\"{$is_group->getURL()}\">" . $is_group->name . "</a>";
-}
-$string .= " <span class='entity-subtext'>" . elgg_view_friendly_time($object->time_created);
-if (isloggedin()){
- $string .= "<a class='river_comment_form_button link'>Comment</a>";
- $string .= elgg_view('forms/likes/link', array('entity' => $object));
-}
-$string .= "</span>";
-echo $string; \ No newline at end of file