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.php72
1 files changed, 0 insertions, 72 deletions
diff --git a/mod/groups/all.php b/mod/groups/all.php
deleted file mode 100644
index 51030adc9..000000000
--- a/mod/groups/all.php
+++ /dev/null
@@ -1,72 +0,0 @@
-<?php
-/**
- * Elgg groups plugin
- *
- * @package ElggGroups
- */
-require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
-
-$limit = get_input("limit", 10);
-$offset = get_input("offset", 0);
-$filter = get_input("filter");
-if (!$filter) {
- // active discussions is the default
- $filter = "newest";
-}
-
-$context = elgg_get_context();
-
-switch ($filter) {
- case "newest":
- $objects = elgg_list_entities(array(
- 'type' => 'group',
- 'limit' => $limit,
- 'full_view' => false,
- ));
- break;
-
- case "pop":
- $objects = list_entities_by_relationship_count('member', true, "", "", 0, $limit, false);
- break;
-
- case "active":
- case 'default':
- $options = array(
- 'type' => 'object',
- 'subtype' => 'groupforumtopic',
- 'annotation_name' => 'generic_comment',
- 'order_by' => 'e.last_action desc',
- 'limit' => 40,
- 'fullview' => TRUE
- );
- $objects = elgg_list_entities($options);
- break;
-}
-
-//get a group count
-$group_count = elgg_get_entities(array('types' => 'group', 'limit' => 10, 'count' => TRUE));
-
-//find groups
-$area2 .= elgg_view("groups/sidebar/find");
-
-//featured groups
-$area2 .= elgg_view("groups/sidebar/featured");
-
-elgg_set_context($context);
-
-$objects = "<div class='group_listings'>" . $objects . "</div>";
-
-$title = elgg_echo("groups:all", array(elgg_get_page_owner()->name));
-if (isloggedin ()) {
- $area1 .= elgg_view('page/elements/content_header', array('context' => "everyone", 'type' => 'groups', 'new_link' => "pg/groups/new"));
-}
-$area1 .= elgg_view("groups/group_sort_menu", array("count" => $group_count, "filter" => $filter)) . $objects;
-
-$params = array(
- 'content' => $area1,
- 'sidebar' => $area2
-);
-$body = elgg_view_layout('one_sidebar', $params);
-
-// Finally draw the page
-echo elgg_view_page($title, $body); \ No newline at end of file