-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysessions.php
198 lines (163 loc) · 8.2 KB
/
mysessions.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
<?php
// Displays sessions for which the current user is a "teacher" (can see attendees' list)
// as well as the ones where the user is signed up (i.e. a "student")
require_once '../../config.php';
require_once 'lib.php';
require_login();
$timenow = time();
$timelater = $timenow + 13 * WEEKSECS;
$startyear = optional_param('startyear', strftime('%Y', $timenow), PARAM_INT);
$startmonth = optional_param('startmonth', strftime('%m', $timenow), PARAM_INT);
$startday = optional_param('startday', strftime('%d', $timenow), PARAM_INT);
$endyear = optional_param('endyear', strftime('%Y', $timelater), PARAM_INT);
$endmonth = optional_param('endmonth', strftime('%m', $timelater), PARAM_INT);
$endday = optional_param('endday', strftime('%d', $timelater), PARAM_INT);
$action = optional_param('action', '', PARAM_ALPHA); // one of: '', export
$format = optional_param('format', 'ods', PARAM_ALPHA); // one of: ods, xls
// filter options
$coursename = optional_param('coursename', '', PARAM_TEXT);
$courseid = optional_param('courseid', '', PARAM_TEXT);
$trainer = optional_param('trainer', '', PARAM_TEXT);
$location = optional_param('location', '', PARAM_TEXT);
$startdate = make_timestamp($startyear, $startmonth, $startday);
$enddate = make_timestamp($endyear, $endmonth, $endday);
$urlparams = "startyear=$startyear&startmonth=$startmonth&startday=$startday&";
$urlparams .= "endyear=$endyear&endmonth=$endmonth&endday=$endday";
$coursenamesql = $coursename ? " AND c.fullname = '$coursename'" : '';
$courseidsql = $courseid ? " AND c.idnumber = '$courseid'" : '';
$records = '';
// Get all Face-to-face session dates from the DB
$records = get_records_sql("SELECT d.id, cm.id AS cmid, c.id AS courseid, c.fullname AS coursename,
c.idnumber as cidnumber, f.name, f.id as facetofaceid, s.id as sessionid,
d.timestart, d.timefinish, su.nbbookings
FROM {$CFG->prefix}facetoface_sessions_dates d
JOIN {$CFG->prefix}facetoface_sessions s ON s.id = d.sessionid
JOIN {$CFG->prefix}facetoface f ON f.id = s.facetoface
LEFT OUTER JOIN (SELECT sessionid, count(sessionid) AS nbbookings
FROM {$CFG->prefix}facetoface_signups su
LEFT JOIN {$CFG->prefix}facetoface_signups_status ss
ON ss.signupid = su.id AND ss.superceded = 0
WHERE ss.statuscode >= ".MDL_F2F_STATUS_BOOKED."
GROUP BY sessionid) su ON su.sessionid = d.sessionid
JOIN {$CFG->prefix}course c ON f.course = c.id
JOIN {$CFG->prefix}course_modules cm ON cm.course = f.course
AND cm.instance = f.id
JOIN {$CFG->prefix}modules m ON m.id = cm.module
WHERE d.timestart >= $startdate AND d.timefinish <= $enddate
AND m.name = 'facetoface'
$coursenamesql
$courseidsql");
add_location_info($records);
// Only keep the sessions for which this user can see attendees
$dates = array();
if ($records) {
$capability = 'mod/facetoface:viewattendees';
// Check the system context first
$contextsystem = get_context_instance(CONTEXT_SYSTEM);
if (has_capability($capability, $contextsystem)) {
// check if the location or trainer filters need to be used
if ($location or $trainer) {
foreach ($records as $record) {
if ($record->location === $location) {
$dates[] = $record;
}
if (isset($record->trainers)) {
foreach ($record->trainers as $t) {
if ($t === $trainer) {
$dates[] = $record;
continue;
}
}
}
}
} else {
$dates = $records;
}
} else {
foreach($records as $record) {
if ($location or $trainer) {
// Check at course level first
$contextcourse = get_context_instance(CONTEXT_COURSE, $record->courseid);
if (has_capability($capability, $contextcourse)) {
if ($record->location === $location) {
$dates[] = $record;
}
if (isset($record->trainers)) {
foreach($record->trainers as $t) {
if ($t === $trainer) {
$dates[] = $record;
continue;
}
}
}
continue;
}
// Check at module level if the first check failed
$contextmodule = get_context_instance(CONTEXT_MODULE, $record->cmid);
if (has_capability($capability, $contextmodule)) {
if ($record->location === $location) {
$dates[] = $record;
}
if (isset($record->trainers)) {
foreach($record->trainers as $t) {
if ($t === $trainer) {
$dates[] = $record;
continue;
}
}
}
}
}
}
}
}
$nbdates = count($dates);
// Process actions if any
if ('export' == $action) {
export_spreadsheet($dates, $format, true);
exit;
}
// format the session and dates to only show one booking where they span multiple dates
// i.e. multiple days startdate = firstday, finishdate = last day
$groupeddates = group_session_dates($dates);
$pagetitle = format_string(get_string('facetoface', 'facetoface') . ' ' . get_string('sessions', 'block_facetoface'));
$navlinks[] = array('name' => $pagetitle, 'link' => '', 'type' => 'activityinstance');
$navigation = build_navigation($navlinks);
print_header_simple($pagetitle, '', $navigation);
print_box_start();
// show tabs
$currenttab = 'attendees';
include_once('tabs.php');
if (empty($users)) {
// Date range form
print '<h2>'.get_string('filters', 'block_facetoface').'</h2>';
print '<form method="get" action=""><p>';
print_facetoface_filters($startdate, $enddate, $coursename, $courseid, $location, $trainer);
print ' <input type="submit" value="'.get_string('apply', 'block_facetoface').'" /></p></form>';
}
// Show all session dates
if ($nbdates > 0) {
print '<h2>'.get_string('sessiondatesview', 'block_facetoface').'</h2>';
print_dates($groupeddates, true, false, false, false, false);
// Export form
print '<h3>'.get_string('exportsessiondates', 'block_facetoface').'</h3>';
print '<form method="post" action=""><p>';
print '<input type="hidden" name="startyear" value="'.$startyear.'" />';
print '<input type="hidden" name="startmonth" value="'.$startmonth.'" />';
print '<input type="hidden" name="startday" value="'.$startday.'" />';
print '<input type="hidden" name="endyear" value="'.$endyear.'" />';
print '<input type="hidden" name="endmonth" value="'.$endmonth.'" />';
print '<input type="hidden" name="endday" value="'.$endday.'" />';
print '<input type="hidden" name="action" value="export" />';
print get_string('format', 'facetoface').': ';
print '<select name="format">';
print '<option value="excel" selected="selected">'.get_string('excelformat', 'facetoface').'</option>';
print '<option value="ods">'.get_string('odsformat', 'facetoface').'</option>';
print '</select>';
print ' <input type="submit" value="'.get_string('exporttofile', 'facetoface').'" /></p></form>';
} else {
print '<h2>'.get_string('sessiondatesview', 'block_facetoface').'</h2>';
print '<p>'.get_string('sessiondatesviewattendeeszero', 'block_facetoface').'</p>';
}
print_box_end();
print_footer();