Beispiel #1
0
     }
     $output = array('files' => $files, 'controlSheet' => $controlSheet);
     header('Content-Type: application/json; charset=utf-8');
     echo json_encode($output);
     exit;
 } else {
     if ($_GET['page'] === "print-exam-form") {
         $request = $model->getExamRequestById($_GET['request_id']);
         $controlSheet = $controlSheets->fetchControlSheet($_GET['prof_request_id']);
         $examAccommodations = $model->getExamAccommodationsById($_GET['request_id']);
         $currentFiscalYearArray = \Ventus\Utilities\Functions::calcFiscalYearDate(null, 1);
         $currentFiscalYear = $currentFiscalYearArray[0]['start_date']->format("Y") . "-" . $currentFiscalYearArray[0]['end_date']->format("Y");
         require_once "views/confirmed-requests-printouts.php";
     } else {
         if ($_GET['page'] === "print-delivery-sheet") {
             $deliverySheet = $model->printDeliverySheet($_GET['start'], $_GET['end']);
             $l10n->addResource(__DIR__ . '/l10n/delivery-sheet.json');
             require 'views/delivery-sheet.php';
         } else {
             if ($_GET['page'] === "print-exam-labels") {
                 $requests = $model->getExamRequestsInRangeForLabels($_GET['start'], $_GET['end']);
                 require_once "views/confirmed-requests-printouts.php";
             } elseif ($_GET['page'] === "switch-document-received-status") {
                 $model->updateDocumentReceivedStatus($_POST['request_id'], $_POST['documents_received']);
                 $loggers['audit']->info("Document received status changed to {$_POST['documents_received']} for exam {$_POST['request_id']}");
                 //If the document has been marked as received, an email needs to go out
                 if ($_POST['documents_received'] === '1') {
                     $model->notifyDocumentReceived($_POST['request_id']);
                     $loggers['audit']->info("Document received notification sent for exam {$_POST['request_id']}");
                 }
             } elseif ($_GET['page'] === "export") {