ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTestSubmissionReviewGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once 'Modules/Test/classes/class.ilTestServiceGUI.php';
5 
15 {
17  protected $testOutputGUI = null;
18 
20  protected $testSession;
21 
23  {
24  $this->testOutputGUI = $testOutputGUI;
25  $this->testSession = $testSession;
26 
27  parent::__construct($testOBJ);
28  }
29 
30  public function executeCommand()
31  {
32  if (!$this->object->getEnableExamview()) {
33  return '';
34  }
35 
36  switch ($this->ctrl->getNextClass($this)) {
37  default:
38  $this->dispatchCommand();
39  break;
40  }
41 
42  return '';
43  }
44 
45  protected function dispatchCommand()
46  {
47  switch ($this->ctrl->getCmd()) {
48  case 'pdfDownload':
49 
50  if ($this->object->getShowExamviewPdf()) {
51  $this->pdfDownload();
52  }
53 
54  break;
55 
56  case 'show':
57  default:
58 
59  $this->show();
60  }
61  }
62 
69  private function getContentBlockName()
70  {
71  if ($this->object->getKioskMode()) {
72  // See: https://mantis.ilias.de/view.php?id=27784
73  //$this->tpl->setBodyClass("kiosk");
74  $this->tpl->hideFooter();
75  return "CONTENT";
76  } else {
77  return "ADM_CONTENT";
78  }
79  }
80 
84  protected function buildToolbar($toolbarId)
85  {
86  require_once 'Modules/Test/classes/class.ilTestPlayerCommands.php';
87  require_once 'Services/UIComponent/Toolbar/classes/class.ilToolbarGUI.php';
88  require_once 'Services/UIComponent/Button/classes/class.ilLinkButton.php';
89  require_once 'Services/UIComponent/Button/classes/class.ilButton.php';
90 
91  $toolbar = new ilToolbarGUI();
92  $toolbar->setId($toolbarId);
93 
94  $backUrl = $this->ctrl->getLinkTarget(
95  $this->testOutputGUI,
96  $this->object->getListOfQuestionsEnd() ?
98  );
99 
100  $button = ilLinkButton::getInstance();
101  $button->setCaption('btn_previous');
102  $button->setUrl($backUrl);
103  $toolbar->addButtonInstance($button);
104 
105  if ($this->object->getShowExamviewPdf()) {
106  $pdfUrl = $this->ctrl->getLinkTarget($this, 'pdfDownload');
107 
108  $button = ilLinkButton::getInstance();
109  $button->setCaption('pdf_export');
110  $button->setUrl($pdfUrl);
111  $button->setTarget(ilButton::FORM_TARGET_BLANK);
112  $toolbar->addButtonInstance($button);
113  }
114 
115  $this->ctrl->setParameter($this->testOutputGUI, 'reviewed', 1);
116  $nextUrl = $this->ctrl->getLinkTarget($this->testOutputGUI, ilTestPlayerCommands::FINISH_TEST);
117  $this->ctrl->setParameter($this->testOutputGUI, 'reviewed', 0);
118 
119  $button = ilLinkButton::getInstance();
120  $button->setPrimary(true);
121  $button->setCaption('btn_next');
122  $button->setUrl($nextUrl);
123  $toolbar->addButtonInstance($button);
124 
125  return $toolbar;
126  }
127 
128  protected function buildUserReviewOutput()
129  {
130  global $DIC; /* @var ILIAS\DI\Container $DIC */
131  $ilObjDataCache = $DIC['ilObjDataCache'];
132 
133  require_once 'Modules/Test/classes/class.ilTestResultHeaderLabelBuilder.php';
134  $testResultHeaderLabelBuilder = new ilTestResultHeaderLabelBuilder($this->lng, $ilObjDataCache);
135 
136  $objectivesList = null;
137 
138  if ($this->getObjectiveOrientedContainer()->isObjectiveOrientedPresentationRequired()) {
139  $testSequence = $this->testSequenceFactory->getSequenceByActiveIdAndPass($this->testSession->getActiveId(), $this->testSession->getPass());
140  $testSequence->loadFromDb();
141  $testSequence->loadQuestions();
142 
143  require_once 'Modules/Course/classes/Objectives/class.ilLOTestQuestionAdapter.php';
144  $objectivesAdapter = ilLOTestQuestionAdapter::getInstance($this->testSession);
145 
146  $objectivesList = $this->buildQuestionRelatedObjectivesList($objectivesAdapter, $testSequence);
147  $objectivesList->loadObjectivesTitles();
148 
149  $testResultHeaderLabelBuilder->setObjectiveOrientedContainerId($this->testSession->getObjectiveOrientedContainerId());
150  $testResultHeaderLabelBuilder->setUserId($this->testSession->getUserId());
151  $testResultHeaderLabelBuilder->setTestObjId($this->object->getId());
152  $testResultHeaderLabelBuilder->setTestRefId($this->object->getRefId());
153  $testResultHeaderLabelBuilder->initObjectiveOrientedMode();
154  }
155 
156  $results = $this->object->getTestResult(
157  $this->testSession->getActiveId(),
158  $this->testSession->getPass(),
159  false,
160  !$this->getObjectiveOrientedContainer()->isObjectiveOrientedPresentationRequired()
161  );
162 
163  require_once 'class.ilTestEvaluationGUI.php';
164  $testevaluationgui = new ilTestEvaluationGUI($this->object);
165  $testevaluationgui->setContextResultPresentation(false);
166 
167  $results_output = $testevaluationgui->getPassListOfAnswers(
168  $results,
169  $this->testSession->getActiveId(),
170  $this->testSession->getPass(),
171  false,
172  false,
173  false,
174  false,
175  false,
176  $objectivesList,
177  $testResultHeaderLabelBuilder
178  );
179 
180  return $results_output;
181  }
182 
183  protected function show()
184  {
185  $html = $this->buildToolbar('review_nav_top')->getHTML();
186  $html .= $this->buildUserReviewOutput() . '<br />';
187  $html .= $this->buildToolbar('review_nav_bottom')->getHTML();
188 
189  if ($this->object->isShowExamIdInTestPassEnabled() && !$this->object->getKioskMode()) {
190  $examIdTpl = new ilTemplate("tpl.exam_id_block.html", true, true, 'Modules/Test');
191  $examIdTpl->setVariable('EXAM_ID_VAL', ilObjTest::lookupExamId(
192  $this->testSession->getActiveId(),
193  $this->testSession->getPass(),
194  $this->object->getId()
195  ));
196  $examIdTpl->setVariable('EXAM_ID_TXT', $this->lng->txt('exam_id'));
197  $html .= $examIdTpl->get();
198  }
199 
200  $this->tpl->setVariable(
201  $this->getContentBlockName(), $html
202  );
203  }
204 
205  protected function pdfDownload()
206  {
208 
209  $reviewOutput = $this->buildUserReviewOutput();
210 
212 
213  exit;
214  }
215 
221  protected function buildPdfFilename()
222  {
223  global $DIC;
224  $ilSetting = $DIC['ilSetting'];
225 
226  $inst_id = $ilSetting->get('inst_id', null);
227 
228  require_once 'Services/Utilities/classes/class.ilUtil.php';
229 
230  $path = ilUtil::getWebspaceDir() . '/assessment/' . $this->testOutputGUI->object->getId() . '/exam_pdf';
231 
232  if (!is_dir($path)) {
233  ilUtil::makeDirParents($path);
234  }
235 
236  $filename = ilUtil::removeTrailingPathSeparators(ILIAS_ABSOLUTE_PATH) . '/' . $path . '/exam_N';
237  $filename .= $inst_id . '-' . $this->testOutputGUI->object->getId();
238  $filename .= '-' . $this->testSession->getActiveId() . '-';
239  $filename .= $this->testSession->getPass() . '.pdf';
240 
241  return $filename;
242  }
243 }
static makeDirParents($a_dir)
Create a new directory and all parent directories.
exit
Definition: login.php:29
Output class for assessment test execution.
const PDF_USER_RESULT
PDF Purposes.
__construct(ilTestOutputGUI $testOutputGUI, ilObjTest $testOBJ, ilTestSession $testSession)
const FORM_TARGET_BLANK
getContentBlockName()
Returns the name of the current content block (depends on the kiosk mode setting) ...
buildQuestionRelatedObjectivesList(ilLOTestQuestionAdapter $objectivesAdapter, ilTestQuestionSequence $testSequence)
static getInstance(ilTestSession $a_test_session)
Class ilTestSubmissionReviewGUI.
Output class for assessment test evaluation.
buildPdfFilename()
not in use, but we keep the code (no archive for every user at end of test !!)
Test session handler.
$results
static removeTrailingPathSeparators($path)
$filename
Definition: buildRTE.php:89
global $ilSetting
Definition: privfeed.php:17
__construct(Container $dic, ilPlugin $plugin)
$DIC
Definition: xapitoken.php:46
Service GUI class for tests.
static generatePDF($pdf_output, $output_mode, $filename=null, $purpose=null)
static getWebspaceDir($mode="filesystem")
get webspace directory
static prepareGenerationRequest($service, $purpose)
Prepare the content processing for a PDF generation request This function should be called as in a re...
static lookupExamId($active_id, $pass)