aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/all.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-03 17:53:05 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-03 17:53:05 +0000
commit4766f36a4d74924f21ff329c4318ce4e069ffa04 (patch)
tree969b84632f2a8b0db79788a8a6db8e41d63e5cb4 /mod/groups/all.php
parent57a217fd6b708844407486046a1faa23b46cac08 (diff)
downloadelgg-4766f36a4d74924f21ff329c4318ce4e069ffa04.tar.gz
elgg-4766f36a4d74924f21ff329c4318ce4e069ffa04.tar.bz2
Pulled in the interface changes.
git-svn-id: http://code.elgg.org/elgg/trunk@5257 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/all.php')
-rw-r--r--mod/groups/all.php71
1 files changed, 71 insertions, 0 deletions
diff --git a/mod/groups/all.php b/mod/groups/all.php
new file mode 100644
index 000000000..fd60ce90a
--- /dev/null
+++ b/mod/groups/all.php
@@ -0,0 +1,71 @@
+<?php
+ /**
+ * Elgg groups plugin
+ *
+ * @package ElggGroups
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008-2010
+ * @link http://elgg.com/
+ */
+
+ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+ $limit = get_input("limit", 10);
+ $offset = get_input("offset", 0);
+ $tag = get_input("tag");
+ $filter = get_input("filter");
+ if(!$filter)
+ $filter = "active";
+
+
+ // Get objects
+ $context = get_context();
+
+ set_context('search');
+ if ($tag != "")
+ $objects = list_entities_from_metadata('tags',$tag,'group',"","", $limit, false);
+ else{
+ switch($filter){
+ case "newest":
+ $objects = elgg_list_entities(array('types' => 'group', 'owner_guid' => 0, 'limit' => $limit, 'full_view' => false));
+ break;
+ case "pop":
+ $objects = list_entities_by_relationship_count('member', true, "", "", 0, $limit, false);
+ break;
+ case "active":
+ $objects = list_entities_from_annotations("object", "groupforumtopic", "group_topic_post", "", 40, 0, 0, false, true);
+ break;
+ case 'default':
+ $objects = elgg_list_entities(array('types' => 'group', 'limit' => $limit, 'full_view' => FALSE));
+ break;
+ }
+ }
+
+ //get a group count
+ $group_count = elgg_get_entities(array('types' => 'group', 'limit' => 10, 'count' => TRUE));
+
+ //find groups
+ $area1 = elgg_view("groups/find");
+
+ //menu options
+ $area1 .= elgg_view("groups/side_menu");
+
+ //featured groups
+ $featured_groups = elgg_get_entities_from_metadata(array('metadata_name' => 'featured_group', 'metadata_value' => 'yes', 'types' => 'group', 'limit' => 10));
+ $area1 .= elgg_view("groups/featured", array("featured" => $featured_groups));
+
+
+ set_context($context);
+
+ $title = sprintf(elgg_echo("groups:all"),page_owner_entity()->name);
+ $area2 = elgg_view_title($title);
+ $area2 .= elgg_view('groups/contentwrapper', array('body' => elgg_view("groups/group_sort_menu", array("count" => $group_count, "filter" => $filter)) . $objects));
+ $body = elgg_view_layout('sidebar_boxes',$area1, $area2);
+
+ // Finally draw the page
+ page_draw($title, $body);
+
+
+
+?> \ No newline at end of file