-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprintstudent.php
More file actions
48 lines (42 loc) · 2.14 KB
/
Copy pathprintstudent.php
File metadata and controls
48 lines (42 loc) · 2.14 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
<?php
// This file is part of Exabis Student Review
//
// (c) 2016 GTN - Global Training Network GmbH <office@gtn-solutions.com>
//
// Exabis Student Review 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.
//
// This script 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 can find the GNU General Public License at <http://www.gnu.org/licenses/>.
//
// This copyright notice MUST APPEAR in all copies of the script!
require __DIR__ . '/inc.php';
global $DB;
$courseid = optional_param('courseid', 1, PARAM_INT); // Course ID
$periodid = optional_param('periodid', 0, PARAM_INT); // Course ID
$pdf = optional_param('pdf', false, PARAM_BOOL); // Course ID
$detail = optional_param('detailedreport', false, PARAM_BOOL);
$studentid = required_param('studentid', PARAM_INT); // Course ID
$classid = optional_param('classid', 0, PARAM_INT);
block_exastud_require_login($courseid);
block_exastud_require_global_cap(BLOCK_EXASTUD_CAP_HEAD_TEACHER);
$actPeriod = block_exastud_get_period($periodid);
if ($classid > 0)
$class = $DB->get_record("block_exastudclass", array("id" => $classid), "*", MUST_EXIST);
else if (!$class = $DB->get_record_sql("SELECT c.* FROM {block_exastudclass} c, {block_exastudclassteachers} ct, {block_exastudclassstudents} cs
WHERE ct.teacherid = ? AND ct.classid = cs.classid AND cs.studentid = ? GROUP BY c.id", array($USER->id, $studentid), IGNORE_MULTIPLE))
print_error('noclassfound', 'block_exastud');
if (!$DB->record_exists("block_exastudclassteachers", array("teacherid" => $USER->id, "classid" => $class->id))) {
print_error('noclassfound', 'block_exastud');
}
if (!$pdf)
block_exastud_print_student_report_header();
block_exastud_print_student_report($studentid, $actPeriod->id, $class, $pdf, $detail);
if (!$pdf)
block_exastud_print_student_report_footer();