2 // This file is part of Moodle - http://moodle.org/
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.
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 * Form classes for editing badges criteria
22 * @copyright 2012 onwards Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 * @author Yuliya Bozhko <yuliya.bozhko@totaralms.com>
27 defined('MOODLE_INTERNAL') ||
die();
29 require_once($CFG->libdir
. '/formslib.php');
30 require_once($CFG->libdir
. '/badgeslib.php');
33 * Form to edit badge criteria.
36 class edit_criteria_form
extends moodleform
{
37 public function definition() {
39 $mform = $this->_form
;
40 $criteria = $this->_customdata
['criteria'];
41 $addcourse = $this->_customdata
['addcourse'];
42 $course = $this->_customdata
['course'];
44 // Get course selector first if it's a new courseset criteria.
45 if (($criteria->id
== 0 ||
$addcourse) && $criteria->criteriatype
== BADGE_CRITERIA_TYPE_COURSESET
) {
46 $criteria->get_courses($mform);
48 if ($criteria->id
== 0 && $criteria->criteriatype
== BADGE_CRITERIA_TYPE_COURSE
) {
49 $mform->addElement('hidden', 'course', $course);
50 $mform->setType('course', PARAM_INT
);
52 list($none, $message) = $criteria->get_options($mform);
55 $mform->addElement('html', html_writer
::tag('div', $message));
56 $mform->addElement('submit', 'cancel', get_string('continue'));
58 $mform->addElement('header', 'description_header', get_string('description'));
59 $mform->addElement('editor', 'description', '', null, null);
60 $mform->setType('description', PARAM_RAW
);
61 $mform->setDefault('description', array(
62 'text' => $criteria->description
,
63 'format' => $criteria->descriptionformat
67 $mform->closeHeaderBefore('buttonar');
68 $this->add_action_buttons(true, get_string('save', 'badges'));
76 public function validation($data, $files) {
78 $errors = parent
::validation($data, $files);
79 $addcourse = $this->_customdata
['addcourse'];
81 if (!$addcourse && isset($this->_customdata
['criteria']->required_param
)) {
82 $required = $this->_customdata
['criteria']->required_param
;
83 $pattern1 = '/^' . $required . '_(\d+)$/';
84 $pattern2 = '/^' . $required . '_(\w+)$/';
87 foreach ($data as $key => $value) {
88 if ((preg_match($pattern1, $key) ||
preg_match($pattern2, $key)) && !($value === 0 ||
$value == '0')) {
93 $warning = $this->_form
->createElement('html',
94 $OUTPUT->notification(get_string('error:parameter', 'badges'), 'notifyproblem'), 'submissionerror');
97 $errors['formerrors'] = 'Error';
98 $this->_form
->insertElementBefore($warning, 'first_header');