[ Index ] |
PHP Cross Reference of moodle-2.8 |
[Summary view] [Print] [Text view]
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 classes for editing badges criteria 19 * 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 <[email protected]> 25 */ 26 27 defined('MOODLE_INTERNAL') || die(); 28 29 require_once($CFG->libdir . '/formslib.php'); 30 require_once($CFG->libdir . '/badgeslib.php'); 31 32 /** 33 * Form to edit badge criteria. 34 * 35 */ 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']; 43 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); 51 } 52 list($none, $message) = $criteria->get_options($mform); 53 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')); 60 } 61 } 62 } 63 64 /** 65 * Validates form data 66 */ 67 public function validation($data, $files) { 68 global $OUTPUT; 69 $errors = parent::validation($data, $files); 70 $addcourse = $this->_customdata['addcourse']; 71 72 if (!$addcourse) { 73 $required = $this->_customdata['criteria']->required_param; 74 $pattern1 = '/^' . $required . '_(\d+)$/'; 75 $pattern2 = '/^' . $required . '_(\w+)$/'; 76 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; 81 } 82 } 83 84 $warning = $this->_form->createElement('html', 85 $OUTPUT->notification(get_string('error:parameter', 'badges'), 'notifyproblem'), 'submissionerror'); 86 87 if (!$ok) { 88 $errors['formerrors'] = 'Error'; 89 $this->_form->insertElementBefore($warning, 'first_header'); 90 } 91 } 92 return $errors; 93 } 94 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:29:05 2014 | Cross-referenced by PHPXref 0.7.1 |