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/discussions.php | 37 ++++++++++++++++++++ mod/groups/languages/en.php | 1 + mod/groups/views/default/groups/forum_latest.php | 2 +- .../views/default/object/groupforumtopic.php | 40 ++++++++++++++++++++++ 4 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 mod/groups/discussions.php create mode 100644 mod/groups/views/default/object/groupforumtopic.php (limited to 'mod') diff --git a/mod/groups/discussions.php b/mod/groups/discussions.php new file mode 100644 index 000000000..4fa1cb5ca --- /dev/null +++ b/mod/groups/discussions.php @@ -0,0 +1,37 @@ + + * @copyright Curverider Ltd 2008 + * @link http://elgg.com/ + */ + + // Load Elgg engine + require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); + + // Get the current page's owner + $page_owner = page_owner_entity(); + if ($page_owner === false || is_null($page_owner)) { + $page_owner = $_SESSION['user']; + set_page_owner($page_owner->getGUID()); + } + + // Display them + $area2 = elgg_view_title(elgg_echo("groups:alldiscussion")); + set_context('search'); + $area2 .= list_entities_from_annotations("object", "groupforumtopic", "group_topic_post", "", 40, 0, 0, false, true); + set_context('groups'); + + $body = elgg_view_layout("two_column_left_sidebar", '', $area2); + + // Display page + page_draw(sprintf(elgg_echo('groups:user')),$body); + + +?> \ No newline at end of file diff --git a/mod/groups/languages/en.php b/mod/groups/languages/en.php index 3ddc84340..d7e7c71bd 100644 --- a/mod/groups/languages/en.php +++ b/mod/groups/languages/en.php @@ -55,6 +55,7 @@ 'groups:forum' => 'Group forum', 'groups:addtopic' => 'Add a topic', 'groups:forumlatest' => 'Forum latest', + 'groupspost:success' => 'Your comment was succesfully posted', 'groups:alldiscussion' => 'Latest discussion', 'groups:edittopic' => 'Edit topic', 'groups:topicmessage' => 'Topic message', 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