Merge branch 'MDL-72656-main' of https://github.com/sarjona/moodle
[moodle.git] / group / grouping_form.php
blob8ffd98db58d8e52a002eb8cb34ad92f8ff1b57b2
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 creating and editing groupings.
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 if (!defined('MOODLE_INTERNAL')) {
27 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
30 require_once($CFG->dirroot.'/lib/formslib.php');
32 /**
33 * Grouping form class
35 * @copyright 2006 The Open University, N.D.Freear AT open.ac.uk, J.White AT open.ac.uk
36 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37 * @package core_group
39 class grouping_form extends moodleform {
41 /**
42 * Form definition
44 function definition () {
45 global $USER, $CFG, $COURSE;
46 $coursecontext = context_course::instance($COURSE->id);
48 $mform =& $this->_form;
49 $editoroptions = $this->_customdata['editoroptions'];
50 $grouping = $this->_customdata['grouping'];
52 $mform->addElement('header', 'general', get_string('general', 'form'));
54 $mform->addElement('text','name', get_string('groupingname', 'group'),'maxlength="254" size="50"');
55 $mform->addRule('name', get_string('required'), 'required', null, 'server');
56 $mform->setType('name', PARAM_TEXT);
58 $mform->addElement('text','idnumber', get_string('idnumbergrouping'), 'maxlength="100" size="10"');
59 $mform->addHelpButton('idnumber', 'idnumbergrouping');
60 $mform->setType('idnumber', PARAM_RAW);
61 if (!has_capability('moodle/course:changeidnumber', $coursecontext)) {
62 $mform->hardFreeze('idnumber');
65 $mform->addElement('editor', 'description_editor', get_string('groupingdescription', 'group'), null, $editoroptions);
66 $mform->setType('description_editor', PARAM_RAW);
68 $handler = \core_group\customfield\grouping_handler::create();
69 $handler->instance_form_definition($mform, empty($grouping->id) ? 0 : $grouping->id);
70 $handler->instance_form_before_set_data($grouping);
72 $mform->addElement('hidden','id');
73 $mform->setType('id', PARAM_INT);
75 $mform->addElement('hidden', 'courseid');
76 $mform->setType('courseid', PARAM_INT);
78 $this->add_action_buttons();
81 /**
82 * Form validation
84 * @param array $data
85 * @param array $files
86 * @return array $errors An array of validataion errors for the form.
88 function validation($data, $files) {
89 global $COURSE, $DB;
91 $errors = parent::validation($data, $files);
93 $name = trim($data['name']);
94 if (isset($data['idnumber'])) {
95 $idnumber = trim($data['idnumber']);
96 } else {
97 $idnumber = '';
99 if ($data['id'] and $grouping = $DB->get_record('groupings', array('id'=>$data['id']))) {
100 if (core_text::strtolower($grouping->name) != core_text::strtolower($name)) {
101 if (groups_get_grouping_by_name($COURSE->id, $name)) {
102 $errors['name'] = get_string('groupingnameexists', 'group', $name);
105 if (!empty($idnumber) && $grouping->idnumber != $idnumber) {
106 if (groups_get_grouping_by_idnumber($COURSE->id, $idnumber)) {
107 $errors['idnumber']= get_string('idnumbertaken');
111 } else if (groups_get_grouping_by_name($COURSE->id, $name)) {
112 $errors['name'] = get_string('groupingnameexists', 'group', $name);
113 } else if (!empty($idnumber) && groups_get_grouping_by_idnumber($COURSE->id, $idnumber)) {
114 $errors['idnumber']= get_string('idnumbertaken');
117 $handler = \core_group\customfield\grouping_handler::create();
118 $errors = array_merge($errors, $handler->instance_form_validation($data, $files));
120 return $errors;
124 * Apply a logic after data is set.
126 public function definition_after_data() {
127 $groupid = $this->_form->getElementValue('id');
128 $handler = \core_group\customfield\grouping_handler::create();
129 $handler->instance_form_definition_after_data($this->_form, empty($groupid) ? 0 : $groupid);