ILIAS  release_8 Revision v8.24
class.ilTestExportFixedQuestionSet.php
Go to the documentation of this file.
1<?php
2
26{
27 protected function initXmlExport()
28 {
29 }
30
31 protected function populateQuestionSetConfigXml(ilXmlWriter $xmlWriter)
32 {
33 }
34
35 protected function getQuestionsQtiXml(): string
36 {
37 $questionQtiXml = '';
38
39 foreach ($this->test_obj->questions as $questionId) {
40 $questionQtiXml .= $this->getQuestionQtiXml($questionId);
41 }
42
43 return $questionQtiXml;
44 }
45
46 protected function getQuestionIds(): array
47 {
48 return $this->test_obj->questions;
49 }
50}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getQuestionQtiXml($questionId)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...