3 /////////////////////////////////////////////////////////////////////////////
5 // NOTICE OF COPYRIGHT //
7 // Moodle - Calendar extension //
9 // Copyright (C) 2003-2004 Greek School Network www.sch.gr //
12 // Avgoustos Tsinakos (tsinakos@teikav.edu.gr) //
13 // Jon Papaioannou (pj@moodle.org) //
15 // Programming and development: //
16 // Jon Papaioannou (pj@moodle.org) //
18 // For bugs, suggestions, etc contact: //
19 // Jon Papaioannou (pj@moodle.org) //
21 // The current module was developed at the University of Macedonia //
22 // (www.uom.gr) under the funding of the Greek School Network (www.sch.gr) //
23 // The aim of this project is to provide additional and improved //
24 // functionality to the Asynchronous Distance Education service that the //
25 // Greek School Network deploys. //
27 // This program is free software; you can redistribute it and/or modify //
28 // it under the terms of the GNU General Public License as published by //
29 // the Free Software Foundation; either version 2 of the License, or //
30 // (at your option) any later version. //
32 // This program is distributed in the hope that it will be useful, //
33 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
34 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
35 // GNU General Public License for more details: //
37 // http://www.gnu.org/copyleft/gpl.html //
39 /////////////////////////////////////////////////////////////////////////////
41 require_once('../config.php');
42 require_once($CFG->dirroot
.'/calendar/lib.php');
44 $from = required_param('from');
45 $var = required_param('var');
46 $value = optional_param('value');
47 $id = optional_param('id');
48 $cal_d = optional_param('cal_d');
49 $cal_m = optional_param('cal_m');
50 $cal_y = optional_param('cal_y');
51 $action = optional_param('action');
52 $type = optional_param('type');
54 // Initialize the session variables
55 calendar_session_vars();
57 // Ensure course id passed if relevant
58 // Required due to changes in view/lib.php mainly (calendar_session_vars())
61 $courseid = '&course='.$id;
66 // Not implemented yet (or possibly at all)
71 $SESSION->cal_courses_shown
= array();
72 calendar_set_referring_course(0);
75 $SESSION->cal_courses_shown
= calendar_get_default_courses(true);
76 calendar_set_referring_course(0);
79 if(get_record('course', 'id', $id) === false) {
80 // There is no such course
81 $SESSION->cal_courses_shown
= array();
82 calendar_set_referring_course(0);
85 calendar_set_referring_course($id);
86 $SESSION->cal_courses_shown
= $id;
91 $SESSION->cal_show_groups
= !$SESSION->cal_show_groups
;
92 set_user_preference('calendar_savedflt', calendar_get_filters_status());
95 $SESSION->cal_show_course
= !$SESSION->cal_show_course
;
96 set_user_preference('calendar_savedflt', calendar_get_filters_status());
99 $SESSION->cal_show_global
= !$SESSION->cal_show_global
;
100 set_user_preference('calendar_savedflt', calendar_get_filters_status());
103 $SESSION->cal_show_user
= !$SESSION->cal_show_user
;
104 set_user_preference('calendar_savedflt', calendar_get_filters_status());
110 redirect(CALENDAR_URL
.'event.php?action='.$action.'&type='.$type.'&id='.intval($id));
113 redirect(CALENDAR_URL
.'view.php?view=month'.$courseid.'&cal_d='.$cal_d.'&cal_m='.$cal_m.'&cal_y='.$cal_y);
116 redirect(CALENDAR_URL
.'view.php?view=upcoming'.$courseid);
119 redirect(CALENDAR_URL
.'view.php?view=day'.$courseid.'&cal_d='.$cal_d.'&cal_m='.$cal_m.'&cal_y='.$cal_y);
122 redirect($CFG->wwwroot
.'/course/view.php?id='.intval($id));