-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapcourse.php
71 lines (58 loc) · 2.58 KB
/
mapcourse.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* print the form to map courses for global evaluations
*
* @author Andreas Grabs
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
* @package mod_evaluation
*/
require_once(__DIR__ . "/../../config.php");
require_once($CFG->dirroot . "/mod/evaluation/lib.php");
require_once("$CFG->libdir/tablelib.php");
$id = required_param('id', PARAM_INT); // Course Module ID.
$url = new moodle_url('/mod/evaluation/mapcourse.php', array('id' => $id));
$PAGE->set_url($url);
$current_tab = 'mapcourse';
list($course, $cm) = get_course_and_cm_from_cmid($id, 'evaluation');
require_login($course, true, $cm);
$evaluation = $PAGE->activityrecord;
$context = context_module::instance($cm->id);
require_capability('mod/evaluation:mapcourse', $context);
$coursemap = array_keys(evaluation_get_courses_from_sitecourse_map($evaluation->id));
$form = new mod_evaluation_course_map_form();
$form->set_data(array('id' => $cm->id, 'mappedcourses' => $coursemap));
$mainurl = new moodle_url('/mod/evaluation/view.php', ['id' => $id]);
if ($form->is_cancelled()) {
redirect($mainurl);
} else if ($data = $form->get_data()) {
evaluation_update_sitecourse_map($evaluation, $data->mappedcourses);
redirect($mainurl, get_string('mappingchanged', 'evaluation'), null, \core\output\notification::NOTIFY_SUCCESS);
}
// Print the page header.
$strevaluations = get_string("modulenameplural", "evaluation");
$strevaluation = get_string("modulename", "evaluation");
$PAGE->set_heading($course->fullname);
$PAGE->set_title(ev_get_tr($evaluation->name));
echo $OUTPUT->header();
if (substr($CFG->release, 0, 1) < "4") {
$icon = '<img src="pix/icon120.png" height="30" alt="' . ev_get_tr($evaluation->name) . '">';
echo $OUTPUT->heading($icon . " " . format_string(ev_get_tr($evaluation->name)));
require('tabs.php');
}
echo $OUTPUT->box(get_string('mapcourseinfo', 'evaluation'));
$form->display();
echo $OUTPUT->footer();