From 762cb3f5c8dff88c47ddc081f2657bcc93245d94 Mon Sep 17 00:00:00 2001 From: pete Date: Sun, 17 Aug 2008 15:13:27 +0000 Subject: groups listing icon changed from tiny to small latest discussion listing info block styled up git-svn-id: https://code.elgg.org/elgg/trunk@1982 36083f99-b078-4883-b0ff-0f9b5a30f544 --- .../views/default/object/groupforumtopic.php | 76 +++++++++++----------- 1 file changed, 38 insertions(+), 38 deletions(-) (limited to 'mod/groups/views/default/object') diff --git a/mod/groups/views/default/object/groupforumtopic.php b/mod/groups/views/default/object/groupforumtopic.php index 8aa3c9d0b..c841f3f82 100644 --- a/mod/groups/views/default/object/groupforumtopic.php +++ b/mod/groups/views/default/object/groupforumtopic.php @@ -1,39 +1,39 @@ - - * @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); - + + * @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' => 'small')); + //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); + ?> \ No newline at end of file -- cgit v1.2.3