aboutsummaryrefslogtreecommitdiff
path: root/mod
diff options
context:
space:
mode:
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-07 16:28:34 +0000
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-07 16:28:34 +0000
commite719c245fe92c07e8f7494dc050b0ddd092380c5 (patch)
tree06e8f05ec53107e3bcd8e46ea58bea45a967bb20 /mod
parent5dd849742b104a6c9b2b0092d853d8171e31f151 (diff)
downloadelgg-e719c245fe92c07e8f7494dc050b0ddd092380c5.tar.gz
elgg-e719c245fe92c07e8f7494dc050b0ddd092380c5.tar.bz2
more group profile work
git-svn-id: https://code.elgg.org/elgg/trunk@1767 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r--mod/groups/discussions.php37
-rw-r--r--mod/groups/languages/en.php1
-rw-r--r--mod/groups/views/default/groups/forum_latest.php2
-rw-r--r--mod/groups/views/default/object/groupforumtopic.php40
4 files changed, 79 insertions, 1 deletions
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 @@
+<?php
+
+ /**
+ * Elgg all group forum discussions page
+ * This page will show all topic dicussions ordered by last comment, regardless of which group
+ * they are part of
+ *
+ * @package ElggGroups
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Dave Tosh <dave@elgg.com>
+ * @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 @@
-<h2><?php echo elgg_echo("groups:forumlatest"); ?></h2>
+<h2>Forum latest</h2>
<?php
$forum = get_entities_from_annotations("object", "groupforumtopic", "group_topic_post", "", 0, $vars['entity']->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 @@
+<?php
+
+ /**
+ * Elgg Forum listing
+ *
+ * @package ElggForums
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Dave Tosh <dave@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);
+ $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 = "<p style=\"float:right;\">" . elgg_echo('created') . " " . $forum_created . ", " . elgg_echo('with') . " " . $num_topics . " " . elgg_echo('topics') . " " . elgg_echo('and') . " " . $counter . " " . elgg_echo('posts') . ".</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);
+
+?> \ No newline at end of file