* @copyright Curverider Ltd 2008 * @link http://elgg.com/ */ //get the required variables $title = $vars['entity']->title; $description = autop($vars['entity']->description); $group = get_entity($vars['entity']->container_guid); $forum_created = friendly_time($vars['entity']->time_created); $counter = $vars['entity']->countAnnotations("group_topic_post"); $last_post = $vars['entity']->getAnnotations("group_topic_post", 1, 0, "desc"); //get the time and user foreach($last_post as $last){ $last_time = $last->time_created; $last_user = $last->owner_guid; } $info = "

" . elgg_echo('created') . " " . $forum_created . ", " . elgg_echo('with') . " " . $counter . " " . elgg_echo('posts') . "
last updated " . friendly_time($last_time) . "
by getURL() . "\">" . get_user($last_user)->username . "

"; //get the group avatar $icon = elgg_view("profile/icon",array('entity' => $group, 'size' => 'tiny')); //get the group and topic title $info .= "

" . elgg_echo('group') . ": getURL()}\">{$group->name}

"; $info .= "

" . elgg_echo('topic') . ": guid}&group_guid={$group->guid}\">{$title}

"; //get the forum description $info .= $description; //display echo elgg_view_listing($icon, $info); ?>