From e719c245fe92c07e8f7494dc050b0ddd092380c5 Mon Sep 17 00:00:00 2001 From: dave Date: Thu, 7 Aug 2008 16:28:34 +0000 Subject: more group profile work git-svn-id: https://code.elgg.org/elgg/trunk@1767 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/groups/views/default/groups/forum_latest.php | 2 +- .../views/default/object/groupforumtopic.php | 40 ++++++++++++++++++++++ 2 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 mod/groups/views/default/object/groupforumtopic.php (limited to 'mod/groups/views') diff --git a/mod/groups/views/default/groups/forum_latest.php b/mod/groups/views/default/groups/forum_latest.php index dc2857f12..360550cfd 100644 --- a/mod/groups/views/default/groups/forum_latest.php +++ b/mod/groups/views/default/groups/forum_latest.php @@ -1,4 +1,4 @@ -

+

Forum latest

guid, 4, 0, "asc", false); diff --git a/mod/groups/views/default/object/groupforumtopic.php b/mod/groups/views/default/object/groupforumtopic.php new file mode 100644 index 000000000..345399a0f --- /dev/null +++ b/mod/groups/views/default/object/groupforumtopic.php @@ -0,0 +1,40 @@ + + * @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); + $num_topics = $vars['entity']->countEntitiesFromRelationship("forum_topic"); + $forum_created = friendly_time($vars['entity']->time_created); + // get the topic entities + $entities = $vars['entity']->getEntitiesFromRelationship("forum_topic"); + $counter = 0; + foreach($entities as $ent){ + //count the post annotations for each topic + $counter = $ent->countAnnotations("topic_post"); + } + + $info = "

" . elgg_echo('created') . " " . $forum_created . ", " . elgg_echo('with') . " " . $num_topics . " " . elgg_echo('topics') . " " . elgg_echo('and') . " " . $counter . " " . elgg_echo('posts') . ".

"; + //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); + +?> \ No newline at end of file -- cgit v1.2.3