Merge branch '45147-27' of git://github.com/samhemelryk/moodle
[moodle.git] / group / group_form.php
blob72e6849fa400c13d7e12bf3ea71d3f423ad8dc76
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.
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/>.
18 /**
19 * A form for the creation and editing of groups.
21 * @copyright 2006 The Open University, N.D.Freear AT open.ac.uk, J.White AT open.ac.uk
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23 * @package core_group
26 defined('MOODLE_INTERNAL') || die;
28 require_once($CFG->dirroot.'/lib/formslib.php');
30 /**
31 * Group form class
33 * @copyright 2006 The Open University, N.D.Freear AT open.ac.uk, J.White AT open.ac.uk
34 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
35 * @package core_group
37 class group_form extends moodleform {
39 /**
40 * Definition of the form
42 function definition () {
43 global $USER, $CFG, $COURSE;
44 $coursecontext = context_course::instance($COURSE->id);
46 $mform =& $this->_form;
47 $editoroptions = $this->_customdata['editoroptions'];
49 $mform->addElement('header', 'general', get_string('general', 'form'));
51 $mform->addElement('text','name', get_string('groupname', 'group'),'maxlength="254" size="50"');
52 $mform->addRule('name', get_string('required'), 'required', null, 'client');
53 $mform->setType('name', PARAM_TEXT);
55 $mform->addElement('text','idnumber', get_string('idnumbergroup'), 'maxlength="100" size="10"');
56 $mform->addHelpButton('idnumber', 'idnumbergroup');
57 $mform->setType('idnumber', PARAM_RAW);
58 if (!has_capability('moodle/course:changeidnumber', $coursecontext)) {
59 $mform->hardFreeze('idnumber');
62 $mform->addElement('editor', 'description_editor', get_string('groupdescription', 'group'), null, $editoroptions);
63 $mform->setType('description_editor', PARAM_RAW);
65 $mform->addElement('passwordunmask', 'enrolmentkey', get_string('enrolmentkey', 'group'), 'maxlength="254" size="24"', get_string('enrolmentkey', 'group'));
66 $mform->addHelpButton('enrolmentkey', 'enrolmentkey', 'group');
67 $mform->setType('enrolmentkey', PARAM_RAW);
69 $options = array(get_string('no'), get_string('yes'));
70 $mform->addElement('select', 'hidepicture', get_string('hidepicture'), $options);
72 $mform->addElement('filepicker', 'imagefile', get_string('newpicture', 'group'));
73 $mform->addHelpButton('imagefile', 'newpicture', 'group');
75 $mform->addElement('hidden','id');
76 $mform->setType('id', PARAM_INT);
78 $mform->addElement('hidden','courseid');
79 $mform->setType('courseid', PARAM_INT);
81 $this->add_action_buttons();
84 /**
85 * Form validation
87 * @param array $data
88 * @param array $files
89 * @return array $errors An array of errors
91 function validation($data, $files) {
92 global $COURSE, $DB, $CFG;
94 $errors = parent::validation($data, $files);
96 $name = trim($data['name']);
97 if (isset($data['idnumber'])) {
98 $idnumber = trim($data['idnumber']);
99 } else {
100 $idnumber = '';
102 if ($data['id'] and $group = $DB->get_record('groups', array('id'=>$data['id']))) {
103 if (core_text::strtolower($group->name) != core_text::strtolower($name)) {
104 if (groups_get_group_by_name($COURSE->id, $name)) {
105 $errors['name'] = get_string('groupnameexists', 'group', $name);
108 if (!empty($idnumber) && $group->idnumber != $idnumber) {
109 if (groups_get_group_by_idnumber($COURSE->id, $idnumber)) {
110 $errors['idnumber']= get_string('idnumbertaken');
114 if (!empty($CFG->groupenrolmentkeypolicy) and $data['enrolmentkey'] != '' and $group->enrolmentkey !== $data['enrolmentkey']) {
115 // enforce password policy only if changing password
116 $errmsg = '';
117 if (!check_password_policy($data['enrolmentkey'], $errmsg)) {
118 $errors['enrolmentkey'] = $errmsg;
122 } else if (groups_get_group_by_name($COURSE->id, $name)) {
123 $errors['name'] = get_string('groupnameexists', 'group', $name);
124 } else if (!empty($idnumber) && groups_get_group_by_idnumber($COURSE->id, $idnumber)) {
125 $errors['idnumber']= get_string('idnumbertaken');
128 return $errors;
132 * Get editor options for this form
134 * @return array An array of options
136 function get_editor_options() {
137 return $this->_customdata['editoroptions'];