aboutsummaryrefslogtreecommitdiff
path: root/actions/event_calendar/toggle_personal_calendar.php
blob: f2341a91a67b76c0beeef5e2c4a66aba15fc633f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
elgg_load_library('elgg:event_calendar');
$event_guid = get_input('event_guid',0);
$user_guid = get_input('user_id',elgg_get_logged_in_user_guid());
$other = get_input('other','');
if ($other) {
	$remove_response = elgg_echo('event_calendar:added_to_the_calendar');
	$add_response = elgg_echo('event_calendar:removed_from_the_calendar');
	$add_error = elgg_echo('event_calendar:add_to_the_calendar_error');
} else {
	$remove_response = elgg_echo('event_calendar:remove_from_my_calendar_response');
	$add_response = elgg_echo('event_calendar:add_to_my_calendar_response');
	$add_error = elgg_echo('event_calendar:add_to_my_calendar_error');
}

if (event_calendar_has_personal_event($event_guid,$user_guid)) {
	$button_text = elgg_echo('event_calendar:add_to_the_calendar');
	event_calendar_remove_personal_event($event_guid,$user_guid);
	$response = array('success'=>TRUE, 'message' => $remove_response, 'button_text'=>$button_text);
} else {
	if (event_calendar_add_personal_event($event_guid,$user_guid)) {
		$button_text = elgg_echo('event_calendar:remove_from_the_calendar_button');
		$response = array('success'=>TRUE, 'message' => $add_response, 'button_text'=>$button_text);
	} else {
		$response = array('success'=>FALSE, 'message' =>$add_error);
	}
}

echo json_encode($response);

exit;