MDL-41993 Atto: Always clean/update the textarea when the content is changed
[moodle.git] / badges / criteria_settings.php
blob6f52fa050a69bdd434369560379f2b387ac85bd0
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 * Page for editing badges criteria settings.
20 * @package core
21 * @subpackage badges
22 * @copyright 2013 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 require_once(dirname(dirname(__FILE__)) . '/config.php');
28 require_once($CFG->libdir . '/badgeslib.php');
29 require_once($CFG->dirroot . '/badges/criteria_form.php');
31 $badgeid = optional_param('badgeid', 0, PARAM_INT); // Badge ID.
32 $type = optional_param('type', 0, PARAM_INT); // Criteria type.
33 $edit = optional_param('edit', 0, PARAM_INT); // Edit criteria ID.
34 $crit = optional_param('crit', 0, PARAM_INT); // Criteria ID for managing params.
35 $param = optional_param('param', '', PARAM_TEXT); // Param name for managing params.
36 $goback = optional_param('cancel', '', PARAM_TEXT);
37 $addcourse = optional_param('addcourse', '', PARAM_TEXT);
38 $submitcourse = optional_param('submitcourse', '', PARAM_TEXT);
40 require_login();
42 $return = new moodle_url('/badges/criteria.php', array('id' => $badgeid));
43 $badge = new badge($badgeid);
44 $context = $badge->get_context();
45 $navurl = new moodle_url('/badges/index.php', array('type' => $badge->type));
47 require_capability('moodle/badges:configurecriteria', $context);
49 if (!empty($goback)) {
50 redirect($return);
53 // Make sure that no actions available for locked or active badges.
54 if ($badge->is_active() || $badge->is_locked()) {
55 redirect($return);
58 if ($badge->type == BADGE_TYPE_COURSE) {
59 require_login($badge->courseid);
60 $navurl = new moodle_url('/badges/index.php', array('type' => $badge->type, 'id' => $badge->courseid));
63 $PAGE->set_context($context);
64 $PAGE->set_url('/badges/criteria_settings.php');
65 $PAGE->set_pagelayout('standard');
66 $PAGE->set_heading($badge->name);
67 $PAGE->set_title($badge->name);
68 navigation_node::override_active_url($navurl);
69 $PAGE->navbar->add($badge->name, new moodle_url('overview.php', array('id' => $badge->id)))->add(get_string('criteria_' . $type, 'badges'));
71 $cparams = array('criteriatype' => $type, 'badgeid' => $badge->id);
72 if ($edit) {
73 $criteria = $badge->criteria[$type];
74 $msg = 'criteriaupdated';
75 } else {
76 $criteria = award_criteria::build($cparams);
77 $msg = 'criteriacreated';
80 $mform = new edit_criteria_form($FULLME, array('criteria' => $criteria, 'addcourse' => $addcourse, 'course' => $badge->courseid));
82 if (!empty($addcourse)) {
83 if ($data = $mform->get_data()) {
84 // If no criteria yet, add overall aggregation.
85 if (count($badge->criteria) == 0) {
86 $criteria_overall = award_criteria::build(array('criteriatype' => BADGE_CRITERIA_TYPE_OVERALL, 'badgeid' => $badge->id));
87 $criteria_overall->save(array('agg' => BADGE_CRITERIA_AGGREGATION_ALL));
90 $id = $criteria->add_courses($data->courses);
91 redirect(new moodle_url('/badges/criteria_settings.php',
92 array('badgeid' => $badgeid, 'edit' => true, 'type' => BADGE_CRITERIA_TYPE_COURSESET, 'crit' => $id)));
94 } else if ($data = $mform->get_data()) {
95 // If no criteria yet, add overall aggregation.
96 if (count($badge->criteria) == 0) {
97 $criteria_overall = award_criteria::build(array('criteriatype' => BADGE_CRITERIA_TYPE_OVERALL, 'badgeid' => $badge->id));
98 $criteria_overall->save(array('agg' => BADGE_CRITERIA_AGGREGATION_ALL));
100 $criteria->save($data);
101 $return->param('msg', $msg);
102 redirect($return);
105 echo $OUTPUT->header();
106 $mform->display();
107 echo $OUTPUT->footer();