Merge branch 'MDL-49143-28' of git://github.com/cameron1729/moodle into MOODLE_28_STABLE
[moodle.git] / badges / criteria_form.php
blob208060d4cbe9677e9f01c98fc0b916820c203046
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/>.
17 /**
18 * Form classes for editing badges criteria
20 * @package core
21 * @subpackage badges
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');
32 /**
33 * Form to edit badge criteria.
36 class edit_criteria_form extends moodleform {
37 public function definition() {
38 global $DB;
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);
47 } else {
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);
54 if ($none) {
55 $mform->addElement('html', html_writer::tag('div', $message));
56 $mform->addElement('submit', 'cancel', get_string('continue'));
57 } else {
58 $mform->closeHeaderBefore('buttonar');
59 $this->add_action_buttons(true, get_string('save', 'badges'));
64 /**
65 * Validates form data
67 public function validation($data, $files) {
68 global $OUTPUT;
69 $errors = parent::validation($data, $files);
70 $addcourse = $this->_customdata['addcourse'];
72 if (!$addcourse) {
73 $required = $this->_customdata['criteria']->required_param;
74 $pattern1 = '/^' . $required . '_(\d+)$/';
75 $pattern2 = '/^' . $required . '_(\w+)$/';
77 $ok = false;
78 foreach ($data as $key => $value) {
79 if ((preg_match($pattern1, $key) || preg_match($pattern2, $key)) && !($value === 0 || $value == '0')) {
80 $ok = true;
84 $warning = $this->_form->createElement('html',
85 $OUTPUT->notification(get_string('error:parameter', 'badges'), 'notifyproblem'), 'submissionerror');
87 if (!$ok) {
88 $errors['formerrors'] = 'Error';
89 $this->_form->insertElementBefore($warning, 'first_header');
92 return $errors;