2024-11-21 18:59:07 +00:00
|
|
|
|
<?php
|
|
|
|
|
require_once('../../config.php');
|
|
|
|
|
require_once($CFG->libdir . '/adminlib.php');
|
|
|
|
|
require_once($CFG->libdir . '/gradelib.php');
|
|
|
|
|
require_once($CFG->libdir . '/tablelib.php');
|
|
|
|
|
require_once($CFG->libdir . '/formslib.php');
|
|
|
|
|
require_once($CFG->dirroot . '/user/selector/lib.php');
|
|
|
|
|
require_once('classes/user_selector.php');
|
|
|
|
|
require_once('classes/usergrades_form.php');
|
2024-11-25 09:11:20 +00:00
|
|
|
|
require_once('vendor/autoload.php');
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
|
use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
|
|
|
|
|
|
2024-11-21 18:59:07 +00:00
|
|
|
|
admin_externalpage_setup('report_usergrades_details', '', null, '', array('capability' => 'report/usergrades:view'));
|
|
|
|
|
|
|
|
|
|
// Instantiate the form
|
|
|
|
|
$mform = new usergrades_form();
|
2024-11-25 09:09:36 +00:00
|
|
|
|
|
|
|
|
|
// Check if form data is submitted
|
|
|
|
|
if ($data = $mform->get_data()) {
|
2024-11-21 18:59:07 +00:00
|
|
|
|
$userid = $data->userid;
|
|
|
|
|
|
|
|
|
|
if (!empty($userid)) {
|
|
|
|
|
$user = $DB->get_record('user', array('id' => $userid), '*', MUST_EXIST);
|
|
|
|
|
$courses = enrol_get_users_courses($user->id, true);
|
2024-11-21 19:02:34 +00:00
|
|
|
|
$questions = $DB->get_records('question');
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
if (isset($data->exportxls)) { // Assume a form field named 'exportxls' for Excel export action
|
|
|
|
|
// Create a new Spreadsheet object
|
|
|
|
|
$spreadsheet = new Spreadsheet();
|
|
|
|
|
$sheet = $spreadsheet->getActiveSheet();
|
|
|
|
|
$row = 1;
|
|
|
|
|
|
|
|
|
|
// Add the user details
|
|
|
|
|
$sheet->setCellValue('A' . $row, get_string('username', 'report_usergrades'));
|
|
|
|
|
$sheet->setCellValue('B' . $row, $user->username);
|
|
|
|
|
$row++;
|
|
|
|
|
$sheet->setCellValue('A' . $row, get_string('firstname', 'report_usergrades'));
|
|
|
|
|
$sheet->setCellValue('B' . $row, $user->firstname);
|
|
|
|
|
$row++;
|
|
|
|
|
$sheet->setCellValue('A' . $row, get_string('lastname', 'report_usergrades'));
|
|
|
|
|
$sheet->setCellValue('B' . $row, $user->lastname);
|
|
|
|
|
$row++;
|
|
|
|
|
$sheet->setCellValue('A' . $row, get_string('email', 'report_usergrades'));
|
|
|
|
|
$sheet->setCellValue('B' . $row, $user->email);
|
|
|
|
|
$row += 2; // Extra space before courses
|
|
|
|
|
|
|
|
|
|
// Start iterating the courses
|
|
|
|
|
foreach ($courses as $course) {
|
|
|
|
|
$sheet->setCellValue('A' . $row, get_string('course', 'report_usergrades') . ': ' . $course->fullname);
|
|
|
|
|
$row++;
|
|
|
|
|
|
|
|
|
|
$quizzes = $DB->get_records('quiz', array('course' => $course->id));
|
|
|
|
|
|
|
|
|
|
if ($quizzes) {
|
|
|
|
|
foreach ($quizzes as $quiz) {
|
|
|
|
|
$quiz_attempts = $DB->get_records('quiz_attempts', array('quiz' => $quiz->id, 'userid' => $user->id));
|
|
|
|
|
|
|
|
|
|
if ($quiz_attempts) {
|
|
|
|
|
$sheet->setCellValue('A' . $row, get_string('quiz', 'report_usergrades') . ': ' . $quiz->name);
|
|
|
|
|
$row++;
|
|
|
|
|
|
|
|
|
|
foreach ($quiz_attempts as $attempt) {
|
|
|
|
|
$sheet->setCellValue('A' . $row, get_string('attempt', 'report_usergrades') . ' ' . $attempt->attempt);
|
|
|
|
|
$row++;
|
|
|
|
|
|
|
|
|
|
$sheet->setCellValue('A' . $row, get_string('question', 'report_usergrades'));
|
|
|
|
|
$sheet->setCellValue('B' . $row, get_string('response', 'report_usergrades'));
|
|
|
|
|
$sheet->setCellValue('C' . $row, get_string('grade', 'report_usergrades'));
|
|
|
|
|
$row++;
|
|
|
|
|
|
|
|
|
|
$question_usages = $DB->get_records('question_usages', array('id' => $attempt->uniqueid));
|
|
|
|
|
|
|
|
|
|
foreach ($question_usages as $question_usage) {
|
|
|
|
|
$question_attempts = $DB->get_records('question_attempts', array('questionusageid' => $question_usage->id));
|
|
|
|
|
|
|
|
|
|
foreach ($question_attempts as $question_attempt) {
|
|
|
|
|
$question = $questions[$question_attempt->questionid];
|
|
|
|
|
$response = $question_attempt->responsesummary;
|
|
|
|
|
|
|
|
|
|
$question_grades = $DB->get_records('question_attempt_steps', array('questionattemptid' => $question_attempt->id));
|
|
|
|
|
|
|
|
|
|
foreach ($question_grades as $question_grade) {
|
|
|
|
|
if ($question_grade->fraction) {
|
|
|
|
|
$sheet->setCellValue('A' . $row, $question->name . ': ' . $question->questiontext);
|
|
|
|
|
$sheet->setCellValue('B' . $row, $response);
|
|
|
|
|
$sheet->setCellValue('C' . $row, $question_grade->fraction);
|
|
|
|
|
$row++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$total_grade = $DB->get_record('quiz_grades', array('quiz' => $quiz->id, 'userid' => $user->id));
|
|
|
|
|
$sheet->setCellValue('A' . $row, get_string('totalgrade', 'report_usergrades') . ': ' . $total_grade->grade . ' / ' . $quiz->grade);
|
|
|
|
|
$row += 2; // Extra space before next attempt or quiz
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$row += 2; // Extra space between courses
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create writer and output the file
|
|
|
|
|
$writer = new Xlsx($spreadsheet);
|
|
|
|
|
$filename = 'user_grades_' . $user->id . '.xlsx';
|
2024-11-21 19:57:29 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
// Redirect output to a client’s web browser (Excel2007)
|
|
|
|
|
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
|
|
|
|
|
header('Content-Disposition: attachment;filename="' . $filename . '"');
|
|
|
|
|
header('Cache-Control: max-age=0');
|
2024-11-21 19:57:29 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
$writer->save('php://output');
|
|
|
|
|
exit();
|
|
|
|
|
} else {
|
|
|
|
|
// HTML output if not exporting
|
|
|
|
|
echo $OUTPUT->header();
|
|
|
|
|
echo $OUTPUT->heading(get_string('usergradesreport', 'report_usergrades'));
|
2024-11-21 19:57:29 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
echo $OUTPUT->heading(get_string('userdetails', 'report_usergrades'), 3);
|
2024-11-21 19:57:29 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
$user_table = new html_table();
|
|
|
|
|
$user_table->head = array(get_string('field', 'report_usergrades'), get_string('value', 'report_usergrades'));
|
|
|
|
|
$user_table->data[] = array(get_string('username', 'report_usergrades'), $user->username);
|
|
|
|
|
$user_table->data[] = array(get_string('firstname', 'report_usergrades'), $user->firstname);
|
|
|
|
|
$user_table->data[] = array(get_string('lastname', 'report_usergrades'), $user->lastname);
|
|
|
|
|
$user_table->data[] = array(get_string('email', 'report_usergrades'), $user->email);
|
2024-11-21 19:59:55 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
echo html_writer::table($user_table);
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
foreach ($courses as $course) {
|
|
|
|
|
echo $OUTPUT->heading($course->fullname, 3);
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
$quizzes = $DB->get_records('quiz', array('course' => $course->id));
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
if ($quizzes) {
|
|
|
|
|
echo $OUTPUT->heading(get_string('quizzes', 'report_usergrades'), 4);
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
foreach ($quizzes as $quiz) {
|
|
|
|
|
$quiz_questions = $DB->get_records('quiz_slots', array('quizid' => $quiz->id));
|
|
|
|
|
$quiz_attempts = $DB->get_records('quiz_attempts', array('quiz' => $quiz->id, 'userid' => $user->id));
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
if ($quiz_attempts) {
|
|
|
|
|
echo $OUTPUT->heading($quiz->name, 5);
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
foreach ($quiz_attempts as $attempt) {
|
|
|
|
|
echo $OUTPUT->heading(get_string('attempt', 'report_usergrades') . ' ' . $attempt->attempt, 6);
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
$attempt_table = new html_table();
|
|
|
|
|
$attempt_table->head = array(get_string('question', 'report_usergrades'), get_string('response', 'report_usergrades'), get_string('grade', 'report_usergrades'));
|
2024-11-21 19:54:21 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
$question_usages = $DB->get_records('question_usages', array('id' => $attempt->uniqueid));
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
foreach ($question_usages as $question_usage) {
|
|
|
|
|
$question_attempts = $DB->get_records('question_attempts', array('questionusageid' => $question_usage->id));
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
foreach ($question_attempts as $question_attempt) {
|
|
|
|
|
$question = $questions[$question_attempt->questionid];
|
|
|
|
|
$response = $question_attempt->responsesummary;
|
2024-11-21 19:45:58 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
$question_grades = $DB->get_records('question_attempt_steps', array('questionattemptid' => $question_attempt->id));
|
|
|
|
|
|
|
|
|
|
foreach ($question_grades as $question_grade) {
|
|
|
|
|
if ($question_grade->fraction) {
|
|
|
|
|
$attempt_table->data[] = array($question->name . ': ' . $question->questiontext, $response, $question_grade->fraction);
|
|
|
|
|
}
|
2024-11-21 19:52:40 +00:00
|
|
|
|
}
|
2024-11-21 19:48:10 +00:00
|
|
|
|
}
|
2024-11-21 19:45:58 +00:00
|
|
|
|
}
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
echo html_writer::table($attempt_table);
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
$total_grade = $DB->get_record('quiz_grades', array('quiz' => $quiz->id, 'userid' => $user->id));
|
2024-11-21 18:59:07 +00:00
|
|
|
|
|
2024-11-25 09:09:36 +00:00
|
|
|
|
echo $OUTPUT->heading(get_string('totalgrade', 'report_usergrades') . ': ' . $total_grade->grade . ' / ' . $quiz->grade, 6);
|
|
|
|
|
}
|
2024-11-21 18:59:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-11-25 09:09:36 +00:00
|
|
|
|
echo $OUTPUT->footer();
|
2024-11-21 18:59:07 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
echo $OUTPUT->notification(get_string('nouserselected', 'report_usergrades'), 'notifyproblem');
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2024-11-25 09:09:36 +00:00
|
|
|
|
// Show the form
|
|
|
|
|
echo $OUTPUT->header();
|
2024-11-21 18:59:07 +00:00
|
|
|
|
$mform->display();
|
2024-11-25 09:09:36 +00:00
|
|
|
|
echo $OUTPUT->footer();
|
2024-11-21 18:59:07 +00:00
|
|
|
|
}
|