diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-07 16:28:34 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-07 16:28:34 +0000 |
commit | e719c245fe92c07e8f7494dc050b0ddd092380c5 (patch) | |
tree | 06e8f05ec53107e3bcd8e46ea58bea45a967bb20 /mod/groups/discussions.php | |
parent | 5dd849742b104a6c9b2b0092d853d8171e31f151 (diff) | |
download | elgg-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/groups/discussions.php')
-rw-r--r-- | mod/groups/discussions.php | 37 |
1 files changed, 37 insertions, 0 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 |