bump version.
[moodle-mod_attendance.git] / temp_form.php
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
16
17 /**
18 * Form for creating temporary users.
19 *
20 * @package mod_attendance
21 * @copyright 2013 Davo Smith, Synergy Learning
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23 */
24
25 defined('MOODLE_INTERNAL') || die();
26
27 global $CFG;
28 require_once($CFG->libdir.'/formslib.php');
29
30 class temp_form extends moodleform {
31 public function definition() {
32
33 $mform = $this->_form;
34
35 $mform->addElement('hidden', 'id', 0);
36 $mform->setType('id', PARAM_INT);
37
38 $mform->addElement('header', 'attheader', get_string('tempaddform', 'attendance'));
39 $mform->addElement('text', 'tname', get_string('tusername', 'attendance'));
40 $mform->addRule('tname', 'Required', 'required', null, 'client');
41 $mform->setType('tname', PARAM_TEXT);
42
43 $mform->addElement('text', 'temail', get_string('tuseremail', 'attendance'));
44 $mform->addRule('temail', 'Email', 'email', null, 'client');
45 $mform->addRule('temail', '', 'callback', null, 'server');
46 $mform->setType('temail', PARAM_EMAIL);
47
48 $mform->addElement('submit', 'submitbutton', get_string('adduser', 'attendance'));
49 $mform->closeHeaderBefore('submit');
50 }
51
52 public function definition_after_data() {
53 $mform = $this->_form;
54 $mform->applyFilter('tname', 'trim');
55 }
56
57 public function validation($data, $files) {
58 $errors = parent::validation($data, $files);
59
60 if ($err = mod_attendance_structure::check_existing_email($data['temail'])) {
61 $errors['temail'] = $err;
62 }
63
64 return $errors;
65 }
66
67 }
68