3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * The mform for creating and editing a calendar event
21 * @copyright 2009 Sam Hemelryk
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 * Always include formslib
29 if (!defined('MOODLE_INTERNAL')) {
30 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
33 require_once($CFG->dirroot
.'/lib/formslib.php');
36 * The mform class for creating and editing a calendar
38 * @copyright 2009 Sam Hemelryk
39 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
41 class event_form
extends moodleform
{
45 function definition () {
46 global $CFG, $USER, $OUTPUT;
47 $mform = $this->_form
;
48 $newevent = (empty($this->_customdata
->event
) ||
empty($this->_customdata
->event
->id
));
49 $repeatedevents = (!empty($this->_customdata
->event
->eventrepeats
) && $this->_customdata
->event
->eventrepeats
>0);
50 $hasduration = (!empty($this->_customdata
->hasduration
) && $this->_customdata
->hasduration
);
51 $mform->addElement('header', 'general', get_string('general'));
54 $eventtypes = $this->_customdata
->eventtypes
;
56 if (!empty($eventtypes->user
)) {
57 $options['user'] = get_string('user');
59 if (!empty($eventtypes->groups
) && is_array($eventtypes->groups
)) {
60 $options['group'] = get_string('group');
62 if (!empty($eventtypes->courses
)) {
63 $options['course'] = get_string('course');
65 if (!empty($eventtypes->site
)) {
66 $options['site'] = get_string('site');
69 $mform->addElement('select', 'eventtype', get_string('eventkind', 'calendar'), $options);
70 $mform->addRule('eventtype', get_string('required'), 'required');
72 if (!empty($eventtypes->groups
) && is_array($eventtypes->groups
)) {
73 $groupoptions = array();
74 foreach ($eventtypes->groups
as $group) {
75 $groupoptions[$group->id
] = format_string($group->name
, true,
76 array('context' => context_course
::instance($group->courseid
)));
78 $mform->addElement('select', 'groupid', get_string('typegroup', 'calendar'), $groupoptions);
79 $mform->disabledIf('groupid', 'eventtype', 'noteq', 'group');
83 // Add some hidden fields
84 $mform->addElement('hidden', 'id');
85 $mform->setType('id', PARAM_INT
);
86 $mform->setDefault('id', 0);
88 $mform->addElement('hidden', 'courseid');
89 $mform->setType('courseid', PARAM_INT
);
91 $mform->addElement('hidden', 'userid');
92 $mform->setType('userid', PARAM_INT
);
93 $mform->setDefault('userid', $USER->id
);
95 $mform->addElement('hidden', 'modulename');
96 $mform->setType('modulename', PARAM_INT
);
97 $mform->setDefault('modulename', '');
99 $mform->addElement('hidden', 'instance');
100 $mform->setType('instance', PARAM_INT
);
101 $mform->setDefault('instance', 0);
103 $mform->addElement('hidden', 'action');
104 $mform->setType('action', PARAM_INT
);
107 $mform->addElement('text', 'name', get_string('eventname','calendar'), 'size="50"');
108 $mform->addRule('name', get_string('required'), 'required');
109 $mform->setType('name', PARAM_TEXT
);
111 $mform->addElement('editor', 'description', get_string('eventdescription','calendar'), null, $this->_customdata
->event
->editoroptions
);
112 $mform->setType('description', PARAM_RAW
);
114 $mform->addElement('date_time_selector', 'timestart', get_string('date'));
115 $mform->addRule('timestart', get_string('required'), 'required');
117 $mform->addElement('header', 'durationdetails', get_string('eventduration', 'calendar'));
120 $group[] =& $mform->createElement('radio', 'duration', null, get_string('durationnone', 'calendar'), 0);
121 $group[] =& $mform->createElement('radio', 'duration', null, get_string('durationuntil', 'calendar'), 1);
122 $group[] =& $mform->createElement('date_time_selector', 'timedurationuntil', '');
123 $group[] =& $mform->createElement('radio', 'duration', null, get_string('durationminutes', 'calendar'), 2);
124 $group[] =& $mform->createElement('text', 'timedurationminutes', get_string('durationminutes', 'calendar'));
126 $mform->addGroup($group, 'durationgroup', '', '<br />', false);
128 $mform->disabledIf('timedurationuntil', 'duration', 'noteq', 1);
129 $mform->disabledIf('timedurationuntil[day]', 'duration', 'noteq', 1);
130 $mform->disabledIf('timedurationuntil[month]', 'duration', 'noteq', 1);
131 $mform->disabledIf('timedurationuntil[year]', 'duration', 'noteq', 1);
132 $mform->disabledIf('timedurationuntil[hour]', 'duration', 'noteq', 1);
133 $mform->disabledIf('timedurationuntil[minute]', 'duration', 'noteq', 1);
135 $mform->setType('timedurationminutes', PARAM_INT
);
136 $mform->disabledIf('timedurationminutes','duration','noteq', 2);
138 $mform->setDefault('duration', ($hasduration)?
1:0);
142 $mform->addElement('header', 'repeatevents', get_string('repeatedevents', 'calendar'));
143 $mform->addElement('checkbox', 'repeat', get_string('repeatevent', 'calendar'), null);
144 $mform->addElement('text', 'repeats', get_string('repeatweeksl', 'calendar'), 'maxlength="10" size="10"');
145 $mform->setType('repeats', PARAM_INT
);
146 $mform->setDefault('repeats', 1);
147 $mform->disabledIf('repeats','repeat','notchecked');
149 } else if ($repeatedevents) {
151 $mform->addElement('hidden', 'repeatid');
152 $mform->setType('repeatid', PARAM_INT
);
154 $mform->addElement('header', 'repeatedevents', get_string('repeatedevents', 'calendar'));
155 $mform->addElement('radio', 'repeateditall', null, get_string('repeateditall', 'calendar', $this->_customdata
->event
->eventrepeats
), 1);
156 $mform->addElement('radio', 'repeateditall', null, get_string('repeateditthis', 'calendar'), 0);
158 $mform->setDefault('repeateditall', 1);
162 $this->add_action_buttons(false, get_string('savechanges'));
166 * A bit of custom validation for this form
168 * @param array $data An assoc array of field=>value
169 * @param array $files An array of files
172 function validation($data, $files) {
175 $errors = parent
::validation($data, $files);
177 if ($data['courseid'] > 0) {
178 if ($course = $DB->get_record('course', array('id'=>$data['courseid']))) {
179 if ($data['timestart'] < $course->startdate
) {
180 $errors['timestart'] = get_string('errorbeforecoursestart', 'calendar');
183 $errors['courseid'] = get_string('invalidcourse', 'error');
188 if ($data['duration'] == 1 && $data['timestart'] > $data['timedurationuntil']) {
189 $errors['timedurationuntil'] = get_string('invalidtimedurationuntil', 'calendar');
190 } else if ($data['duration'] == 2 && (trim($data['timedurationminutes']) == '' ||
$data['timedurationminutes'] < 1)) {
191 $errors['timedurationminutes'] = get_string('invalidtimedurationminutes', 'calendar');