aboutsummaryrefslogtreecommitdiff
path: root/views/default/event_calendar/personal_toggle_js.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/event_calendar/personal_toggle_js.php')
-rw-r--r--views/default/event_calendar/personal_toggle_js.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/views/default/event_calendar/personal_toggle_js.php b/views/default/event_calendar/personal_toggle_js.php
deleted file mode 100644
index c0611e45c..000000000
--- a/views/default/event_calendar/personal_toggle_js.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?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> \ No newline at end of file