* @copyright Curverider Ltd 2008-2009 * @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); //if (isloggedin()) { $counter = $vars['entity']->countAnnotations("group_topic_post"); $last_post = $vars['entity']->getAnnotations("group_topic_post", 1, 0, "desc"); //} //get the time and user if ($last_post) { foreach($last_post as $last) { $last_time = $last->time_created; $last_user = $last->owner_guid; } } $u = get_user($last_user); $info = "
" . sprintf(elgg_echo('group:created'), $forum_created, $counter) . "
" . 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); ?>