diff options
Diffstat (limited to 'actions/event_calendar/request_personal_calendar.php')
-rw-r--r-- | actions/event_calendar/request_personal_calendar.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/actions/event_calendar/request_personal_calendar.php b/actions/event_calendar/request_personal_calendar.php new file mode 100644 index 000000000..68c96e364 --- /dev/null +++ b/actions/event_calendar/request_personal_calendar.php @@ -0,0 +1,16 @@ +<?php +// asks the event owner to add you to the event +elgg_load_library('elgg:event_calendar'); + +$event_guid = get_input('guid',0); +$user_guid = elgg_get_logged_in_user_guid(); +$event = get_entity($event_guid); +if (elgg_instanceof($event,'object','event_calendar')) { + if (event_calendar_send_event_request($event,$user_guid)) { + system_message(elgg_echo('event_calendar:request_event_response')); + } else { + register_error(elgg_echo('event_calendar:request_event_error')); + } +} + +forward(REFERER); |