-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
180 lines (151 loc) · 6.47 KB
/
index.php
File metadata and controls
180 lines (151 loc) · 6.47 KB
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
<?php
/**
* This file contains functions used by the session reports
*
* @package report
* @subpackage session
* @author Domenico Pontari <fairsayan@gmail.com>
* @copyright Institute of Tropical Medicine - Antwerp
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require('../../config.php');
require_once($CFG->dirroot.'/course/lib.php');
require_once($CFG->dirroot.'/report/session/locallib.php');
require_once($CFG->libdir.'/adminlib.php');
$id = optional_param('id', 0, PARAM_INT);// Course ID
$host_course = optional_param('host_course', '', PARAM_PATH);// Course ID
if (empty($host_course)) {
$hostid = $CFG->mnet_localhost_id;
if (empty($id)) {
$site = get_site();
$id = $site->id;
}
} else {
list($hostid, $id) = explode('/', $host_course);
}
$group = optional_param('group', 0, PARAM_INT); // Group to display
$user = optional_param('user', 0, PARAM_INT); // User to display
$date = optional_param('date', 0, PARAM_INT); // Date to display
$modname = optional_param('modname', '', PARAM_PLUGIN); // course_module->id
$modid = optional_param('modid', 0, PARAM_FILE); // number or 'site_errors'
$type = optional_param('type', 'all', PARAM_ALPHA); // session type
$page = optional_param('page', '0', PARAM_INT); // which page to show
$perpage = optional_param('perpage', '100', PARAM_INT); // how many per page
$showcourses = optional_param('showcourses', 0, PARAM_INT); // whether to show courses if we're over our limit.
$showusers = optional_param('showusers', 0, PARAM_INT); // whether to show users if we're over our limit.
$chooselog = optional_param('chooselog', 0, PARAM_INT);
$logformat = optional_param('logformat', 'showashtml', PARAM_ALPHA);
$params = array();
if ($id !== 0) {
$params['id'] = $id;
}
if ($host_course !== '') {
$params['host_course'] = $host_course;
}
if ($group !== 0) {
$params['group'] = $group;
}
if ($user !== 0) {
$params['user'] = $user;
}
if ($date !== 0) {
$params['date'] = $date;
}
if ($modname !== '') {
$params['modname'] = $modname;
}
if ($modid !== 0) {
$params['modid'] = $modid;
}
if ($page !== '0') {
$params['page'] = $page;
}
if ($perpage !== '100') {
$params['perpage'] = $perpage;
}
if ($showcourses !== 0) {
$params['showcourses'] = $showcourses;
}
if ($showusers !== 0) {
$params['showusers'] = $showusers;
}
if ($chooselog !== 0) {
$params['chooselog'] = $chooselog;
}
if ($logformat !== 'showashtml') {
$params['logformat'] = $logformat;
}
$PAGE->set_url('/report/session/index.php', $params);
$PAGE->set_pagelayout('report');
if ($hostid == $CFG->mnet_localhost_id) {
$course = $DB->get_record('course', array('id'=>$id), '*', MUST_EXIST);
} else {
$course_stub = $DB->get_record('mnet_log', array('hostid'=>$hostid, 'course'=>$id), '*', true);
$course->id = $id;
$course->shortname = $course_stub->coursename;
$course->fullname = $course_stub->coursename;
}
require_login($course);
$context = get_context_instance(CONTEXT_COURSE, $course->id);
require_capability('report/session:view', $context);
add_to_log($course->id, "course", "report session", "report/session/index.php?id=$course->id", $course->id);
$strlogs = get_string('sessions', 'report_session');
$stradministration = get_string('administration');
$strreports = get_string('reports');
session_get_instance()->write_close();
if (!empty($chooselog)) {
$userinfo = get_string('allparticipants');
$dateinfo = get_string('alldays');
if ($user > 0) {
$u = $DB->get_record('user', array('id'=>$user, 'deleted'=>0), '*', MUST_EXIST);
$userinfo = fullname($u, has_capability('moodle/site:viewfullnames', $context));
if ($user && report_session_is_user_online($user)) $userinfo .= report_session_print_online_tag('display:inline; margin:0 5px;');
}
if ($date) {
$dateinfo = userdate($date, get_string('strftimedaydate'));
}
switch ($logformat) {
case 'showashtml':
if ($hostid != $CFG->mnet_localhost_id || $course->id == SITEID) {
admin_externalpage_setup('reportlog');
echo $OUTPUT->header();
} else {
$PAGE->set_title($course->shortname .': '. $strlogs);
$PAGE->set_heading($course->fullname);
$PAGE->navbar->add("$userinfo, $dateinfo");
echo $OUTPUT->header();
}
echo $OUTPUT->heading(format_string($course->fullname) . ": $userinfo, $dateinfo (".usertimezone().")");
// report_session_print_mnet_selector_form($hostid, $course, $user, $date, $modname, $modid, $group, $showcourses, $showusers, $logformat);
if ($user <= 0) report_session_print_online_users();
report_session_print_selector_form($course, $user, $date, $modname, $modid, $type, $group, $showcourses, $showusers, $logformat);
if ($hostid == $CFG->mnet_localhost_id) {
report_session_print_sessions($course, $user, $date, $type, 'starttime DESC', $page, $perpage,
"index.php?id=$course->id&chooselog=1&user=$user&date=$date&modid=$modid&type=$type&group=$group",
$modid, $group);
} else {
// print_mnet_log($hostid, $id, $user, $date, 'starttime DESC', $page, $perpage, "", $modname, $modid, $group);
}
report_session_print_forceupdate(($user > 0)?$u->id:NULL, $course->id, $modid);
break;
case 'downloadasexcel':
if (!report_session_excel_sessions($course, $user, $date, $type, 'starttime DESC', $modid, $group)) {
echo $OUTPUT->notification("No logs found!");
echo $OUTPUT->footer();
}
exit;
}
} else {
if ($hostid != $CFG->mnet_localhost_id || $course->id == SITEID) {
admin_externalpage_setup('reportlog', '', null, '', array('pagelayout'=>'report'));
echo $OUTPUT->header();
} else {
$PAGE->set_title($course->shortname .': '. $strlogs);
$PAGE->set_heading($course->fullname);
echo $OUTPUT->header();
}
echo $OUTPUT->heading(get_string('choosesessions', 'report_session') .':');
report_session_print_selector_form($course, $user, $date, $modname, $modid, $type, $group, $showcourses, 1, $logformat);
report_session_print_forceupdate(NULL, $course->id, 0);
}
echo $OUTPUT->footer();