aboutsummaryrefslogtreecommitdiff
path: root/mod/event_calendar/views/default/event_calendar/personal_toggle_js.php
blob: c0611e45c70288a0258d473881ad251d4f280305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
// TODO: put the rest into a JS function

$elgg_ts = time();
$elgg_token = generate_action_token($elgg_ts);
$tokens = "&__elgg_ts=$elgg_ts&__elgg_token=$elgg_token";
?>
<script type="text/javascript">
function event_calendar_personal_toggle(event_id,user_id) {
	
	var link = "<?php echo $vars['url']; ?>action/event_calendar/toggle_personal_calendar?";
	link += "user_id="+user_id+"&event_id="+event_id+"&other=true";
	link += "<?php echo $tokens; ?>";
	$.get(link,
		function (res) {
			$('#event_calendar_user_data_'+user_id).html(res);
		}
	);
}
</script>