forked from middlebury/moodle-mod_adaptivequiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewreport.php
167 lines (148 loc) · 6.19 KB
/
viewreport.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?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/>.
/**
* Adaptive quiz view report script
*
* This module was created as a collaborative effort between Middlebury College
* and Remote Learner.
*
* @package mod_adaptivequiz
* @copyright 2013 onwards Remote-Learner {@link http://www.remote-learner.ca/}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(dirname(__FILE__).'/../../config.php');
require_once($CFG->dirroot.'/lib/grouplib.php');
require_once($CFG->dirroot.'/mod/adaptivequiz/locallib.php');
$id = required_param('cmid', PARAM_INT);
$sortdir = optional_param('sortdir', 'ASC', PARAM_ALPHA);
$sort = optional_param('sort', 'lastname', PARAM_ALPHA);
$page = optional_param('page', 0, PARAM_INT);
$groupid = optional_param('group', 0, PARAM_INT);
$download = optional_param('download', '', PARAM_ALPHA);
if (!$cm = get_coursemodule_from_id('adaptivequiz', $id)) {
print_error('invalidcoursemodule');
}
if (!$course = $DB->get_record('course', array('id' => $cm->course))) {
print_error("coursemisconf");
}
require_login($course, true, $cm);
$context = context_module::instance($cm->id);
require_capability('mod/adaptivequiz:viewreport', $context);
$adaptivequiz = $DB->get_record('adaptivequiz', array('id' => $cm->instance), '*');
$PAGE->set_url('/mod/adaptivequiz/viewreport.php', array('cmid' => $cm->id));
$PAGE->set_title(format_string($adaptivequiz->name));
$PAGE->set_heading(format_string($course->fullname));
$PAGE->set_context($context);
if ($download == 'csv') {
$output = $PAGE->get_renderer('mod_adaptivequiz', 'csv');
} else {
$output = $PAGE->get_renderer('mod_adaptivequiz');
}
/* Initialized parameter array for sql query */
$param = array(
'attemptstate1' => ADAPTIVEQUIZ_ATTEMPT_COMPLETED,
'attemptstate2' => ADAPTIVEQUIZ_ATTEMPT_COMPLETED,
'attemptstate3' => ADAPTIVEQUIZ_ATTEMPT_COMPLETED,
'attemptstate4' => ADAPTIVEQUIZ_ATTEMPT_COMPLETED,
'instance' => $cm->instance);
/* Constructo order by clause */
$orderby = adaptivequiz_construct_view_report_orderby($sort, $sortdir);
/* Output the groups selector */
$groupsel = $output->print_groups_selector($cm, $course, $context, $USER->id);
$groupjoin = '';
$groupwhere = '';
/* Determine the currently active group id */
if (empty($groupid)) {
$allowedgroups = groups_get_activity_allowed_groups($cm, $USER->id);
$groupid = groups_get_activity_group($cm, true, $allowedgroups);
}
/* Create the group sql join and where clause */
if (0 != $groupid) {
$groupjoin = ' INNER JOIN {groups_members} gm ON u.id = gm.userid ';
$groupwhere = ' AND gm.groupid = :groupid ';
$param['groupid'] = $groupid;
}
/* Retreive a list of attempts made by each user, displaying the sum of attempts and the highest score for each user */
$sql = "SELECT u.id, u.firstname, u.lastname, u.email, a.highestlevel, a.lowestlevel,
(SELECT COUNT(*)
FROM {adaptivequiz_attempt} caa
WHERE caa.userid = u.id
AND caa.instance = aa.instance
) AS attempts,
(SELECT maa.measure
FROM {adaptivequiz_attempt} maa
WHERE maa.instance = a.id
AND maa.userid = u.id
AND maa.attemptstate = :attemptstate1
AND maa.standarderror > 0.0
ORDER BY measure DESC
LIMIT 1) AS measure,
(SELECT saa.standarderror
FROM {adaptivequiz_attempt} saa
WHERE saa.instance = a.id
AND saa.userid = u.id
AND saa.attemptstate = :attemptstate2
AND saa.standarderror > 0.0
ORDER BY measure DESC
LIMIT 1) AS stderror,
(SELECT taa.timemodified
FROM {adaptivequiz_attempt} taa
WHERE taa.instance = a.id
AND taa.userid = u.id
AND taa.attemptstate = :attemptstate3
AND taa.standarderror > 0.0
ORDER BY measure DESC
LIMIT 1) AS timemodified,
(SELECT iaa.uniqueid
FROM {adaptivequiz_attempt} iaa
WHERE iaa.instance = a.id
AND iaa.userid = u.id
AND iaa.attemptstate = :attemptstate4
AND iaa.standarderror > 0.0
ORDER BY measure DESC
LIMIT 1) AS uniqueid
FROM {adaptivequiz_attempt} aa
JOIN {user} u ON u.id = aa.userid
JOIN {adaptivequiz} a ON a.id = aa.instance
$groupjoin
WHERE aa.instance = :instance
$groupwhere
GROUP BY u.id, aa.instance, a.id, a.highestlevel, a.lowestlevel
$orderby";
$startfrom = $page * ADAPTIVEQUIZ_REC_PER_PAGE;
if ($download) {
$records = $DB->get_records_sql($sql, $param);
} else {
$records = $DB->get_records_sql($sql, $param, $startfrom, ADAPTIVEQUIZ_REC_PER_PAGE);
}
/* Count the total number of records returned */
$recordscount = $DB->get_records_sql($sql, $param);
/* Set selected groupid */
$output->groupid = $groupid;
/* print header information */
$header = $output->print_header();
/* Output attempts table */
$reporttable = $output->print_report_table($records, $cm, $sort, $sortdir);
/* Output paging bar */
$pagingbar = $output->print_paging_bar(count($recordscount), $page, ADAPTIVEQUIZ_REC_PER_PAGE);
/* Output footer information */
$footer = $output->print_footer();
echo $header;
echo $groupsel;
echo $pagingbar;
echo $reporttable;
echo $pagingbar;
echo $footer;