From 039a02659f42e31ae48e145c6fa2308dca5fc9ac Mon Sep 17 00:00:00 2001 From: dave Date: Thu, 27 Aug 2009 12:06:23 +0000 Subject: a snippet of a new comment on an object will now appear in the activity river git-svn-id: https://code.elgg.org/elgg/trunk@3444 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/annotation/annotate.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'views/default/annotation/annotate.php') diff --git a/views/default/annotation/annotate.php b/views/default/annotation/annotate.php index 7888f76d2..f5ccac36e 100644 --- a/views/default/annotation/annotate.php +++ b/views/default/annotation/annotate.php @@ -4,11 +4,21 @@ $object = get_entity($vars['item']->object_guid); $url = $object->getURL(); $subtype = get_subtype_from_id($object->subtype); - + $comment = $object->getAnnotations("generic_comment", 1, 0, "desc"); + foreach($comment as $c){ + $contents = $c->value; + } + $contents = strip_tags($contents);//this is so we don't get large images etc in the activity river $url = "getURL()}\">{$performed_by->name}"; $string = sprintf(elgg_echo("river:posted:generic"),$url) . " "; $string .= elgg_echo("{$subtype}:river:annotate") . " getURL() . "\">" . $object->title . ""; - + $string .= "
"; + if(strlen($contents) > 200) { + $string .= substr($contents, 0, strpos($contents, ' ', 200)) . "..."; + }else{ + $string .= $contents; + } + $string .= "
"; ?> \ No newline at end of file -- cgit v1.2.3