-
Notifications
You must be signed in to change notification settings - Fork 86
/
viewstatistics.php
295 lines (275 loc) · 11.1 KB
/
viewstatistics.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<?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/>.
/**
* Statistics report for the scheduler
*
* @package mod_scheduler
* @copyright 2011 Henning Bostelmann and others (see README.txt)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
/**
* A function utility for sorting stat results.
*
* @param array $a
* @param array $b
* @return int
*/
function byname($a, $b) {
return strcasecmp($a[0], $b[0]);
}
$taburl = new moodle_url('/mod/scheduler/view.php', array('id' => $scheduler->cmid,
'what' => 'viewstatistics', 'subpage' => $subpage));
$PAGE->set_url($taburl);
echo $OUTPUT->header();
// Display navigation tabs.
echo $output->teacherview_tabs($scheduler, $permissions, $taburl, $subpage);
// Find active group in case that group mode is in use.
$currentgroupid = 0;
$groupmode = groups_get_activity_groupmode($scheduler->cm);
if ($groupmode) {
$currentgroupid = groups_get_activity_group($scheduler->cm, true);
groups_print_activity_menu($scheduler->cm, $taburl);
}
// Display correct type of statistics by request.
$usergroups = ($currentgroupid > 0) ? array($currentgroupid) : '';
$attendees = $scheduler->get_available_students($usergroups);
switch ($subpage) {
case 'overall':
$sql = '
SELECT
COUNT(DISTINCT(a.studentid))
FROM
{scheduler_slots} s,
{scheduler_appointment} a
WHERE
s.id = a.slotid AND
s.schedulerid = ? AND
a.attended = 1
';
$attended = $DB->count_records_sql($sql, array($scheduler->id));
$sql = '
SELECT
COUNT(DISTINCT(a.studentid))
FROM
{scheduler_slots} s,
{scheduler_appointment} a
WHERE
s.id = a.slotid AND
s.schedulerid = ? AND
a.attended = 0
';
$registered = $DB->count_records_sql($sql, array($scheduler->id));
$sql = '
SELECT
COUNT(DISTINCT(s.id))
FROM
{scheduler_slots} s
LEFT JOIN
{scheduler_appointment} a
ON
s.id = a.slotid
WHERE
s.schedulerid = ? AND
s.teacherid = ? AND
a.attended IS NULL
';
$freeowned = $DB->count_records_sql($sql, array($scheduler->id, $USER->id));
$sql = '
SELECT
COUNT(DISTINCT(s.id))
FROM
{scheduler_slots} s
LEFT JOIN
{scheduler_appointment} a
ON
s.id = a.slotid
WHERE
s.schedulerid = ? AND
s.teacherid != ? AND
a.attended IS NULL
';
$freenotowned = $DB->count_records_sql($sql, array($scheduler->id, $USER->id));
$allattendees = ($attendees) ? count($attendees) : 0;
$str = '<h3>'.get_string('attendable', 'scheduler').'</h3>';
$str .= '<strong>'.get_string('attendablelbl', 'scheduler').'</strong>: ' . $allattendees . '<br/>';
$str .= '<h3>'.get_string('attended', 'scheduler').'</h3>';
$str .= '<strong>'.get_string('attendedlbl', 'scheduler').'</strong>: ' . $attended . '<br/><br/>';
$str .= '<h3>'.get_string('unattended', 'scheduler').'</h3>';
$str .= '<strong>'.get_string('registeredlbl', 'scheduler').'</strong>: ' . $registered . '<br/>';
$str .= '<strong>'.get_string('unregisteredlbl', 'scheduler').'</strong>: ' .
($allattendees - $registered - $attended) . '<br/>';
$str .= '<h3>'.get_string('availableslots', 'scheduler').'</h3>';
$str .= '<strong>'.get_string('availableslotsowned', 'scheduler').'</strong>: ' . $freeowned . '<br/>';
$str .= '<strong>'.get_string('availableslotsnotowned', 'scheduler').'</strong>: ' . $freenotowned . '<br/>';
$str .= '<strong>'.get_string('availableslotsall', 'scheduler').'</strong>: ' . ($freeowned + $freenotowned) . '<br/>';
echo $OUTPUT->box($str);
break;
case 'studentbreakdown':
// Display the amount of time each student has received.
if (!empty($attendees)) {
$table = new html_table();
$table->head = array (get_string('student', 'scheduler'), get_string('duration', 'scheduler'));
$table->align = array ('LEFT', 'CENTER');
$table->width = '70%';
$table->data = array();
$sql = '
SELECT
a.studentid,
SUM(s.duration) as totaltime
FROM
{scheduler_slots} s,
{scheduler_appointment} a
WHERE
s.id = a.slotid AND
a.studentid > 0 AND
s.schedulerid = ?
GROUP BY
a.studentid
';
if ($statrecords = $DB->get_records_sql($sql, array($scheduler->id))) {
foreach ($statrecords as $arecord) {
if (array_key_exists($arecord->studentid, $attendees)) {
$table->data[] = array (fullname($attendees[$arecord->studentid]), $arecord->totaltime);
}
}
uasort($table->data, 'byname');
}
echo html_writer::table($table);
} else {
echo $OUTPUT->box(get_string('nostudents', 'scheduler'), 'center', '70%');
}
break;
case 'staffbreakdown':
// Display break down by member of staff.
$sql = "SELECT s.teacherid,
SUM(s.duration) as totaltime
FROM {scheduler_slots} s
LEFT JOIN {scheduler_appointment} a
ON a.slotid = s.id
WHERE
s.schedulerid = :sid
AND a.studentid IS NOT NULL";
$params = array('sid' => $scheduler->id);
if ($currentgroupid > 0) {
$sql .= " AND EXISTS (SELECT 1 FROM {groups_members} gm WHERE gm.userid = a.studentid AND gm.groupid = :gid)";
$params['gid'] = $currentgroupid;
}
$sql .= " GROUP BY s.teacherid";
if ($statrecords = $DB->get_records_sql($sql, $params)) {
$table = new html_table();
$table->width = '70%';
$table->head = array (s($scheduler->get_teacher_name()), get_string('cumulatedduration', 'scheduler'));
$table->align = array ('LEFT', 'CENTER');
foreach ($statrecords as $arecord) {
$ateacher = $DB->get_record('user', array('id' => $arecord->teacherid));
$table->data[] = array (fullname($ateacher), $arecord->totaltime);
}
uasort($table->data, 'byname');
echo html_writer::table($table);
}
break;
case 'lengthbreakdown':
// Display by number of atendees to one member of staff.
$sql = '
SELECT
s.starttime,
COUNT(*) as groupsize,
MAX(s.duration) as duration
FROM
{scheduler_slots} s
LEFT JOIN
{scheduler_appointment} a
ON
a.slotid = s.id
WHERE
a.studentid IS NOT NULL AND
schedulerid = :sid';
$params = array('sid' => $scheduler->id);
if ($currentgroupid > 0) {
$sql .= " AND EXISTS (SELECT 1 FROM {groups_members} gm WHERE gm.userid = a.studentid AND gm.groupid = :gid)";
$params['gid'] = $currentgroupid;
}
$sql .= " GROUP BY s.starttime ORDER BY groupsize DESC";
if ($groupslots = $DB->get_records_sql($sql, $params)) {
$table = new html_table();
$table->head = array (get_string('duration', 'scheduler'), get_string('appointments', 'scheduler'));
$table->align = array ('LEFT', 'CENTER');
$table->width = '70%';
$durationcount = array();
foreach ($groupslots as $slot) {
if (array_key_exists($slot->duration, $durationcount)) {
$durationcount[$slot->duration] ++;
} else {
$durationcount[$slot->duration] = 1;
}
}
foreach ($durationcount as $key => $duration) {
$table->data[] = array ($key, $duration);
}
echo html_writer::table($table);
}
break;
case 'groupbreakdown':
// Display by number of atendees to one member of staff.
$sql = "
SELECT
s.starttime,
COUNT(*) as groupsize,
MAX(s.duration) as duration
FROM
{scheduler_slots} s
LEFT JOIN
{scheduler_appointment} a
ON
a.slotid = s.id
WHERE
a.studentid IS NOT NULL AND
s.schedulerid = :sid";
$params = array('sid' => $scheduler->id);
if ($currentgroupid > 0) {
$sql .= " AND EXISTS (SELECT 1 FROM {groups_members} gm WHERE gm.userid = s.teacherid AND gm.groupid = :gid)";
$params['gid'] = $currentgroupid;
}
$sql .= " GROUP BY s.starttime
ORDER BY groupsize DESC";
if ($groupslots = $DB->get_records_sql($sql, $params)) {
$table = new html_table();
$table->head = array (get_string('groupsize', 'scheduler'), get_string('occurrences', 'scheduler'),
get_string('cumulatedduration', 'scheduler'));
$table->align = array ('LEFT', 'CENTER', 'CENTER');
$table->width = '70%';
$grouprows = array();
foreach ($groupslots as $agroup) {
if (!array_key_exists($agroup->groupsize, $grouprows)) {
$grouprows[$agroup->groupsize] = new stdClass();
$grouprows[$agroup->groupsize]->occurrences = 0;
$grouprows[$agroup->groupsize]->duration = 0;
}
$grouprows[$agroup->groupsize]->occurrences++;
$grouprows[$agroup->groupsize]->duration += $agroup->duration;
}
foreach (array_keys($grouprows) as $agroupsize) {
$table->data[] = array ($agroupsize, $grouprows[$agroupsize]->occurrences, $grouprows[$agroupsize]->duration);
}
echo html_writer::table($table);
}
}
echo '<br/>';
echo $OUTPUT->continue_button("$CFG->wwwroot/mod/scheduler/view.php?id=".$cm->id);
// Finish the page.
echo $OUTPUT->footer($course);
exit;