aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/activity.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-10 13:02:04 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-10 13:02:04 +0000
commite378f5961943faf16995acda327b81a2d5a0bd05 (patch)
treed0f9284dc195e396313e28e3970840aae6ee2f8f /mod/groups/activity.php
parent01a482ddf2684612a989772a732c13e9bc9cc04c (diff)
downloadelgg-e378f5961943faf16995acda327b81a2d5a0bd05.tar.gz
elgg-e378f5961943faf16995acda327b81a2d5a0bd05.tar.bz2
moved most of the groups pages into its library
git-svn-id: http://code.elgg.org/elgg/trunk@7867 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/activity.php')
-rw-r--r--mod/groups/activity.php57
1 files changed, 0 insertions, 57 deletions
diff --git a/mod/groups/activity.php b/mod/groups/activity.php
deleted file mode 100644
index 57678be6d..000000000
--- a/mod/groups/activity.php
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-/**
- * Elgg group activity
- */
-
-require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
-
-$group_guid = (int)get_input('group');
-set_page_owner($group_guid);
-if (!(elgg_get_page_owner() instanceof ElggGroup)) {
- forward();
-}
-group_gatekeeper();
-
-global $CONFIG;
-
-// set up breadcrumbs
-$group = get_entity($group_guid);
-elgg_push_breadcrumb(elgg_echo('groups'), elgg_get_site_url()."pg/groups/world/");
-elgg_push_breadcrumb($group->name, $group->getURL());
-elgg_push_breadcrumb(elgg_echo('groups:activity'));
-
-$area1 = elgg_view('navigation/breadcrumbs');
-
-$limit = get_input("limit", 20);
-$offset = get_input("offset", 0);
-$group_guid = get_input("group", 7);
-// Sanitise variables -- future proof in case they get sourced elsewhere
-$limit = (int) $limit;
-$offset = (int) $offset;
-$group_guid = (int) $group_guid;
-
-$entities = elgg_get_entities(array(
- 'container_guids' => $group_guid,
- 'group_by' => 'e.guid'
-));
-
-$entity_guids = array();
-foreach ($entities as $entity) {
- $entity_guids[] = $entity->getGUID();
-}
-
-if (count($entity_guids) > 0) {
- $river_items = elgg_view_river_items('', $entity_guids, '', '', '', '', $limit);
- $river_items .= elgg_view('riverdashboard/js');
-} else {
- $river_items .= elgg_echo('groups:no_activity');
-}
-
-$area1 .= elgg_view_title(elgg_echo('groups:activity'));
-$area1 .= elgg_view("group_activity/extend");
-$area1 .= "<div class='group_listings hide_comments'>".$river_items."</div>";
-$title = elgg_echo("groups:activity", array(elgg_get_page_owner()->name));
-$body = elgg_view_layout('one_column_with_sidebar', array('content' => $area1));
-
-// Finally draw the page
-echo elgg_view_page($title, $body); \ No newline at end of file