aboutsummaryrefslogtreecommitdiff
path: root/display_event_users.php
diff options
context:
space:
mode:
authorKevin Jardine <kevinjardine@yahoo.com>2011-09-26 12:42:11 +0200
committerKevin Jardine <kevinjardine@yahoo.com>2011-09-26 12:42:11 +0200
commit804dfcf6c4b5b6380d607c8ec6b843d56ac82247 (patch)
treecc81ecb76a5f1422100d521b9fe3b93166fcdf3e /display_event_users.php
parent6b20e80c9d577a3eeeb570a6d9fd706fe619709b (diff)
downloadelgg-804dfcf6c4b5b6380d607c8ec6b843d56ac82247.tar.gz
elgg-804dfcf6c4b5b6380d607c8ec6b843d56ac82247.tar.bz2
major changes for Elgg 1.8
Diffstat (limited to 'display_event_users.php')
-rw-r--r--display_event_users.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/display_event_users.php b/display_event_users.php
deleted file mode 100644
index c5d06cd8f..000000000
--- a/display_event_users.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-/**
- * Display users who have added a given event to their personal calendars
- *
- * @package event_calendar
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Kevin Jardine <kevin@radagast.biz>
- * @copyright Radagast Solutions 2008
- * @link http://radagast.biz/
- *
- */
-
-// Load Elgg engine
-require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
-
-// Load event calendar model
-require_once(dirname(__FILE__) . "/models/model.php");
-
-set_context('event_calendar');
-$limit = get_input('limit', 12);
-$offset = get_input('offset', 0);
-if (($event_id = get_input('event_id', 0)) && $event = get_entity($event_id)) {
- $event_container = get_entity($event->container_guid);
- if ($event_container instanceOf ElggGroup) {
- // Re-define context
- set_context('groups');
- set_page_owner($event_container->getGUID());
- }
- set_input('search_viewtype','gallery');
- $count = event_calendar_get_users_for_event($event_id,$limit,$offset,true);
- $users = event_calendar_get_users_for_event($event_id,$limit,$offset,false);
- $body = event_calendar_view_entity_list($users, $count, $offset, $limit, true, false);
-
- $body .= elgg_view('event_calendar/personal_toggle_js');
-
- $title = sprintf(elgg_echo('event_calendar:users_for_event_title'),$event->title);
- page_draw($title,elgg_view_layout("two_column_left_sidebar", '', elgg_view_title($title) . $body));
-} else {
- register_error('event_calendar:error_nosuchevent');
- forward();
-}
-?> \ No newline at end of file