aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/all.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/groups/all.php')
-rw-r--r--mod/groups/all.php61
1 files changed, 28 insertions, 33 deletions
diff --git a/mod/groups/all.php b/mod/groups/all.php
index 8e99ea780..f2edac9c3 100644
--- a/mod/groups/all.php
+++ b/mod/groups/all.php
@@ -1,7 +1,7 @@
<?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
@@ -13,62 +13,57 @@
$limit = get_input("limit", 10);
$offset = get_input("offset", 0);
- $tag = get_input("tag");
$filter = get_input("filter");
if (!$filter) {
// active discussions is the default
$filter = "active";
}
-
-
- // Get objects
+
$context = get_context();
-
- set_context('search');
- if ($tag != "") {
- $filter = 'search';
- // groups plugin saves tags as "interests" - see groups_fields_setup() in start.php
- $objects = list_entities_from_metadata('interests',$tag,'group',"","", $limit, false, false, true, false);
- } else {
- switch($filter){
- case "newest":
+
+ switch($filter){
+ case "newest":
$objects = elgg_list_entities(array('types' => 'group', 'owner_guid' => 0, 'limit' => $limit, 'offset' => $offset, 'full_view' => false));
break;
- case "pop":
+
+ case "pop":
$objects = list_entities_by_relationship_count('member', true, "", "", 0, $limit, false);
break;
- case "active":
- case 'default':
- $objects = list_entities_from_annotations("object", "groupforumtopic", "group_topic_post", "", 40, 0, 0, false, true);
+
+ case "active":
+ case 'default':
+ $options = array(
+ 'type' => 'object',
+ 'subtype' => 'groupforumtopic',
+ 'annotation_name' => 'group_topic_post',
+ 'limit' => 40,
+ 'fullview' => TRUE
+ );
+ $objects = elgg_list_entities_from_annotations($options);
break;
- }
}
-
+
//get a group count
$group_count = elgg_get_entities(array('types' => 'group', 'limit' => 10, 'count' => TRUE));
-
+
//menu options
- $area2 = elgg_view("groups/side_menu");
+ $area2 = elgg_view("groups/side_menu");
//find groups
$area2 .= elgg_view("groups/find");
-
+
//featured groups
$featured_groups = elgg_get_entities_from_metadata(array('metadata_name' => 'featured_group', 'metadata_value' => 'yes', 'types' => 'group', 'limit' => 10));
$area2 .= elgg_view("groups/featured", array("featured" => $featured_groups));
-
+
set_context($context);
-
+
$objects = "<div class='group_listings'>".$objects."</div>";
-
- $title = sprintf(elgg_echo("groups:all"),page_owner_entity()->name);
+
+ $title = sprintf(elgg_echo("groups:all"), page_owner_entity()->name);
$area1 .= elgg_view('page_elements/content_header', array('context' => "everyone", 'type' => 'groups', 'new_link' => "{$CONFIG->url}pg/groups/new"));
$area1 .= elgg_view("groups/group_sort_menu", array("count" => $group_count, "filter" => $filter)) . $objects;
$body = elgg_view_layout('one_column_with_sidebar', $area1, $area2);
-
- // Finally draw the page
- page_draw($title, $body);
-
-
-?>
+ // Finally draw the page
+ page_draw($title, $body); \ No newline at end of file