Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 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
 * Page for editing badges criteria settings.
19
 *
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>
25
 */
26
 
27
require_once(__DIR__ . '/../config.php');
28
require_once($CFG->libdir . '/badgeslib.php');
29
require_once($CFG->dirroot . '/badges/criteria_form.php');
30
 
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);
39
 
40
require_login();
41
 
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));
46
 
47
require_capability('moodle/badges:configurecriteria', $context);
48
 
49
if (!empty($goback)) {
50
    redirect($return);
51
}
52
 
53
// Make sure that no actions available for locked or active badges.
54
if ($badge->is_active() || $badge->is_locked()) {
55
    redirect($return);
56
}
57
 
58
// Make sure the criteria type is accepted.
59
$accepted = $badge->get_accepted_criteria();
60
if (!in_array($type, $accepted)) {
61
    redirect($return);
62
}
63
 
64
if ($badge->type == BADGE_TYPE_COURSE) {
65
    require_login($badge->courseid);
66
    $course = get_course($badge->courseid);
67
    $heading = format_string($course->fullname, true, ['context' => $context]);
68
    $navurl = new moodle_url('/badges/index.php', array('type' => $badge->type, 'id' => $badge->courseid));
69
    $PAGE->set_pagelayout('standard');
70
    navigation_node::override_active_url($navurl);
71
} else {
72
    $PAGE->set_pagelayout('admin');
73
    $heading = get_string('administrationsite');
74
    navigation_node::override_active_url($navurl, true);
75
}
76
 
77
$urlparams = array('badgeid' => $badgeid, 'edit' => $edit, 'type' => $type, 'crit' => $crit);
78
$PAGE->set_context($context);
79
$PAGE->set_url('/badges/criteria_settings.php', $urlparams);
80
$PAGE->set_heading($heading);
81
$PAGE->set_title($badge->name);
82
$PAGE->navbar->add($badge->name, new moodle_url('overview.php', array('id' => $badge->id)))
83
    ->add(get_string('bcriteria', 'badges'), new moodle_url('criteria.php', ['id' => $badge->id]))
84
    ->add(get_string('criteria_' . $type, 'badges'));
85
 
86
$cparams = array('criteriatype' => $type, 'badgeid' => $badge->id);
87
if ($edit) {
88
    $criteria = $badge->criteria[$type];
89
    $msg = 'criteriaupdated';
90
} else {
91
    $criteria = award_criteria::build($cparams);
92
    $msg = 'criteriacreated';
93
}
94
 
95
$mform = new edit_criteria_form($FULLME, array('criteria' => $criteria, 'addcourse' => $addcourse, 'course' => $badge->courseid));
96
 
97
if (!empty($addcourse)) {
98
    if ($data = $mform->get_data()) {
99
        // If no criteria yet, add overall aggregation.
100
        if (count($badge->criteria) == 0) {
101
            $criteria_overall = award_criteria::build(array('criteriatype' => BADGE_CRITERIA_TYPE_OVERALL, 'badgeid' => $badge->id));
102
            $criteria_overall->save(array('agg' => BADGE_CRITERIA_AGGREGATION_ALL));
103
        }
104
 
105
        $id = $criteria->add_courses($data->courses);
106
        redirect(new moodle_url('/badges/criteria_settings.php',
107
            array('badgeid' => $badgeid, 'edit' => true, 'type' => BADGE_CRITERIA_TYPE_COURSESET, 'crit' => $id)));
108
    }
109
} else if ($data = $mform->get_data()) {
110
    // If no criteria yet, add overall aggregation.
111
    if (count($badge->criteria) == 0) {
112
        $criteria_overall = award_criteria::build(array('criteriatype' => BADGE_CRITERIA_TYPE_OVERALL, 'badgeid' => $badge->id));
113
        $criteria_overall->save(array('agg' => BADGE_CRITERIA_AGGREGATION_ALL));
114
    }
115
    $criteria->save((array)$data);
116
    $return->param('msg', $msg);
117
    redirect($return);
118
}
119
 
120
echo $OUTPUT->header();
121
$mform->display();
122
echo $OUTPUT->footer();