diff options
author | Kevin Jardine <kevinjardine@yahoo.com> | 2011-06-28 23:13:49 -0700 |
---|---|---|
committer | Kevin Jardine <kevinjardine@yahoo.com> | 2011-06-28 23:13:49 -0700 |
commit | 0a013cd9833a20d3b6334d80dba581bbbb2ce756 (patch) | |
tree | bad977e423a6d1193d362295611fe4472c2373af /display_event_users.php | |
parent | 1dd01c7ff9685995b4bc9de0ceeb7856086c3f40 (diff) | |
parent | 29792a9858484266952a53268e4fd0dd29b2f4a5 (diff) | |
download | elgg-0a013cd9833a20d3b6334d80dba581bbbb2ce756.tar.gz elgg-0a013cd9833a20d3b6334d80dba581bbbb2ce756.tar.bz2 |
Merge pull request #1 from cash/master
moved code into base directory
Diffstat (limited to 'display_event_users.php')
-rw-r--r-- | display_event_users.php | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/display_event_users.php b/display_event_users.php new file mode 100644 index 000000000..c5d06cd8f --- /dev/null +++ b/display_event_users.php @@ -0,0 +1,42 @@ +<?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 |