summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/event/calendarEvents.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts/event/calendarEvents.php')
-rw-r--r--application/views/scripts/event/calendarEvents.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/application/views/scripts/event/calendarEvents.php b/application/views/scripts/event/calendarEvents.php
deleted file mode 100644
index 691c434..0000000
--- a/application/views/scripts/event/calendarEvents.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
- $year = date('Y');
- $month = date('m');
-
- echo json_encode(array(
-
- array(
- 'id' => 111,
- 'title' => "Event1",
- 'start' => "$year-$month-10",
- 'end' => "$year-$month-11",
- 'url' => "http://yahoo.com/"
- ),
-
- array(
- 'id' => 222,
- 'title' => "Event2",
- 'start' => "$year-$month-20",
- 'end' => "$year-$month-22",
- 'url' => "http://yahoo.com/"
- )
-
- ));
-
-?> \ No newline at end of file