aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/object/groupforumtopic.php
diff options
context:
space:
mode:
authorpete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-17 15:13:27 +0000
committerpete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-17 15:13:27 +0000
commit762cb3f5c8dff88c47ddc081f2657bcc93245d94 (patch)
treea8be5d22b3d570f2f22b54d51b8597e8ba4ad9ad /mod/groups/views/default/object/groupforumtopic.php
parent6079267179bfee55e6798a16ac10b45accef2f57 (diff)
downloadelgg-762cb3f5c8dff88c47ddc081f2657bcc93245d94.tar.gz
elgg-762cb3f5c8dff88c47ddc081f2657bcc93245d94.tar.bz2
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
Diffstat (limited to 'mod/groups/views/default/object/groupforumtopic.php')
-rw-r--r--mod/groups/views/default/object/groupforumtopic.php76
1 files changed, 38 insertions, 38 deletions
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 @@
-<?php
-
- /**
- * Elgg Groups latest discussion listing
- *
- * @package ElggGroups
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider <info@elgg.com>
- * @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 = "<p style=\"float:right;\">" . elgg_echo('created') . " " . $forum_created . ", " . elgg_echo('with') . " " . $counter . " " . elgg_echo('posts') . "<br />last updated " . friendly_time($last_time) . "<br />by <a href=\"" . get_user($last_user)->getURL() . "\">" . get_user($last_user)->username . "</a></p>";
- //get the group avatar
- $icon = elgg_view("profile/icon",array('entity' => $group, 'size' => 'tiny'));
- //get the group and topic title
- $info .= "<p>" . elgg_echo('group') . ": <a href=\"{$group->getURL()}\">{$group->name}</a></p>";
-
- $info .= "<p>" . elgg_echo('topic') . ": <a href=\"{$vars['url']}mod/groups/topicposts.php?topic={$vars['entity']->guid}&group_guid={$group->guid}\">{$title}</a></p>";
- //get the forum description
- $info .= $description;
-
- //display
- echo elgg_view_listing($icon, $info);
-
+<?php
+
+ /**
+ * Elgg Groups latest discussion listing
+ *
+ * @package ElggGroups
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider <info@elgg.com>
+ * @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 = "<p class=\"latest_discussion_info\">" . elgg_echo('created') . " " . $forum_created . ", " . elgg_echo('with') . " " . $counter . " " . elgg_echo('posts') . "<br /><span class=\"timestamp\">last updated " . friendly_time($last_time) . "<br />by <a href=\"" . get_user($last_user)->getURL() . "\">" . get_user($last_user)->username . "</a></span></p>";
+ //get the group avatar
+ $icon = elgg_view("profile/icon",array('entity' => $group, 'size' => 'small'));
+ //get the group and topic title
+ $info .= "<p>" . elgg_echo('group') . ": <a href=\"{$group->getURL()}\">{$group->name}</a></p>";
+
+ $info .= "<p>" . elgg_echo('topic') . ": <a href=\"{$vars['url']}mod/groups/topicposts.php?topic={$vars['entity']->guid}&group_guid={$group->guid}\">{$title}</a></p>";
+ //get the forum description
+ $info .= $description;
+
+ //display
+ echo elgg_view_listing($icon, $info);
+
?> \ No newline at end of file