$accommodations = $model->getAllStudentActiveExamAndTranscriptionAccommodations($_GET['student_id'], $_GET['exam_date'], $request['course_code'], $request['course_section'], $request['session']); //Check all the possible allowed accommodations to see if the student has extra time $extra_time_allowed = null; foreach ($accommodations as $a) { if ($a['type'] === "Extra time") { $extra_time_allowed = explode(" ", $a['name']); //Get the last bit of the name of the acc. resulting in the percentage value } } } $l10n->addResource(__DIR__ . '/l10n/unconfirmed-request-details.json'); $l10n->localizeArray($accommodations, 'name'); $viewFile = 'views/unconfirmed-request-details.php'; } elseif ($_GET['page'] === 'add-exam-request') { $applicable_files = $examFiles->fetchFilesForAllStudents($_POST['professor_exam_request_id']); $confirmed_request_id = $model->confirmStudentParticipation($_POST, $_POST['student_num'], $SESSION->user_id); $loggers['audit']->info("Exam confirmed for student {$_POST['student_num']} for {$_POST['professor_exam_request_id']}"); foreach ($applicable_files as $file) { $examFiles->addStudentsToFile($file, array($_POST['student_num'])); } echo $confirmed_request_id; } elseif ($_GET['page'] === "write-in-class") { $denied->confirmStudentParticipationInClass($_GET); $loggers['audit']->info("In-class participation confirmed for student {$_GET['student_num']} for {$_GET['professor_exam_request_id']}"); if (ctype_digit($_GET['professor_exam_request_id']) && ctype_digit($_GET['student_num']) && \Ventus\Utilities\Functions::checkIfStringIsDate($_GET['exam_date'])) { header('Location: denied-requests.php?focus=' . $_GET['professor_exam_request_id'] . $_GET['student_num'] . '&start=' . $_GET['exam_date'] . '&end=' . $_GET['exam_date']); } else { header('Location: denied-requests.php'); } die; } elseif ($_GET['page'] === "export") {