-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallusershistory.php
86 lines (75 loc) · 3.05 KB
/
allusershistory.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?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/>.
/**
* History enhanced rubric page
*
* @package gradingform_enhancedrubric
* @copyright 2022 Amanda Doughty, Synergy Learning
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(__DIR__.'/../../../../config.php');
global $CFG, $DB, $PAGE, $OUTPUT;
require_once($CFG->dirroot.'/grade/grading/lib.php');
require_once($CFG->dirroot . '/mod/assign/locallib.php');
$download = optional_param('download', null, PARAM_ALPHA);
$itemid = optional_param('itemid', null, PARAM_INT);
$areaid = required_param('areaid', PARAM_INT);
$manager = get_grading_manager($areaid);
$controller = $manager->get_controller('enhancedrubric');
$definitionid = $controller->get_definition()->id;
[$context, $course, $cm] = get_context_info_array($manager->get_context()->id);
$assignment = new assign($context, $cm, $course);
$grademenu = make_grades_menu($assignment->get_instance()->grade);
$allowgradedecimals = $assignment->get_instance()->grade > 0;
$controller->set_grade_range($grademenu, $allowgradedecimals);
$commentfeedbackplugin = $assignment->get_feedback_plugin_by_type('comments');
$commentsenabled = $commentfeedbackplugin->is_enabled() && $commentfeedbackplugin->is_visible();
// Does this assignment use a scale?
$scaleoptions = null;
if ($assignment->get_instance()->grade < 0) {
if ($scale = $DB->get_record('scale', array('id'=>-($assignment->get_instance()->grade)))) {
$scaleoptions = make_menu_from_list($scale->scale);
}
}
require_login($course, true, $cm);
require_capability('gradingform/enhancedrubric:viewhistory', $context);
$title = get_string('enhancedrubrichistory', 'gradingform_enhancedrubric');
$pageurl = new moodle_url('/grade/grading/form/enhancedrubric/allusershistory.php', ['areaid' => $areaid, 'itemid' => $itemid]);
$PAGE->set_url($pageurl);
$PAGE->set_title($title);
$PAGE->set_heading($title);
[$markingworkflow, $gradereleased, $workflowstatus] = $controller->get_markingworkflow($itemid);
$table = new \gradingform_enhancedrubric\all_users_rubrics_table(
$areaid,
$definitionid,
$assignment->get_instance()->id,
$itemid,
$markingworkflow,
$context,
$commentsenabled,
$scaleoptions,
null,
$controller
);
$table->baseurl = $pageurl;
if ($table->is_downloading()) {
$table->download();
exit();
}
echo $OUTPUT->header();
echo $OUTPUT->heading($title);
$table->out(10, false);
echo $OUTPUT->footer();