19 include_once
"./Modules/Test/classes/inc.AssessmentConstants.php";
54 public function __construct($a_qpl_obj, $a_mode =
"xml", $array_questions = null)
62 $this->qpl_obj = &$a_qpl_obj;
63 if (!is_array($array_questions)) {
64 $array_questions = &$a_qpl_obj->getAllQuestionIds();
70 $this->mode = $a_mode;
74 $this->questions = $array_questions;
76 $this->qpl_obj->createExportDirectory();
77 switch ($this->mode) {
79 $this->export_dir = $this->qpl_obj->getExportDirectory(
'xml');
80 $this->subdir = $date .
"__" . $this->inst_id .
"__" .
81 "qpl" .
"_" . $this->qpl_obj->getId();
82 $this->filename = $this->subdir .
".xml";
83 $this->qti_filename = $date .
"__" . $this->inst_id .
"__" .
84 "qti" .
"_" . $this->qpl_obj->getId() .
".xml";
87 $this->export_dir = $this->qpl_obj->getExportDirectory(
'xls');
88 $this->filename = $date .
"__" . $this->inst_id .
"__" .
89 "qpl" .
"_" . $this->qpl_obj->getId() .
".xlsx";
90 $this->zipfilename = $date .
"__" . $this->inst_id .
"__" .
91 "qpl" .
"_" . $this->qpl_obj->getId() .
".zip";
94 $this->export_dir = $this->qpl_obj->getExportDirectory(
'zip');
95 $this->subdir = $date .
"__" . $this->inst_id .
"__" .
96 "qpl" .
"_" . $this->qpl_obj->getId();
97 $this->filename = $this->subdir .
".xml";
98 $this->qti_filename = $date .
"__" . $this->inst_id .
"__" .
99 "qti" .
"_" . $this->qpl_obj->getId() .
".xml";
115 switch ($this->mode) {
130 $ilBench = $DIC[
'ilBench'];
132 $ilBench->start(
"QuestionpoolExport",
"buildExportFile");
134 include_once(
"./Services/Xml/classes/class.ilXmlWriter.php");
138 $this->xml->xmlSetDtdDef(
"<!DOCTYPE Test SYSTEM \"http://www.ilias.uni-koeln.de/download/dtd/ilias_co.dtd\">");
141 $this->xml->xmlSetGenCmt(
"Export of ILIAS Test Questionpool " .
145 $this->xml->xmlHeader();
148 include_once
"./Services/Utilities/classes/class.ilUtil.php";
153 $expDir = $this->qpl_obj->getExportDirectory();
156 include_once
"./Services/Logging/classes/class.ilLog.php";
157 $expLog =
new ilLog($expDir,
"export.log");
159 $expLog->setLogFormat(
"");
160 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Start Export");
163 $qti_file = fopen($this->export_dir .
"/" . $this->subdir .
"/" . $this->qti_filename,
"w");
164 fwrite($qti_file, $this->qpl_obj->questionsToXML($this->questions));
168 $ilBench->start(
"QuestionpoolExport",
"buildExportFile_getXML");
169 $this->qpl_obj->objectToXmlWriter(
172 $this->export_dir .
"/" . $this->subdir,
176 $ilBench->stop(
"QuestionpoolExport",
"buildExportFile_getXML");
177 $ilBench->start(
"QuestionpoolExport",
"buildExportFile_dumpToFile");
178 $this->xml->xmlDumpFile($this->export_dir .
"/" . $this->subdir .
"/" . $this->filename,
false);
179 $ilBench->stop(
"QuestionpoolExport",
"buildExportFile_dumpToFile");
182 $ilBench->start(
"QuestionpoolExport",
"buildExportFile_saveAdditionalMobs");
184 $ilBench->stop(
"QuestionpoolExport",
"buildExportFile_saveAdditionalMobs");
187 $ilBench->start(
"QuestionpoolExport",
"buildExportFile_zipFile");
188 ilFileUtils::zip($this->export_dir .
"/" . $this->subdir, $this->export_dir .
"/" . $this->subdir .
".zip");
190 $ilBench->stop(
"QuestionpoolExport",
"buildExportFile_zipFile");
192 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Finished Export");
193 $ilBench->stop(
"QuestionpoolExport",
"buildExportFile");
195 return $this->export_dir .
"/" . $this->subdir .
".zip";
200 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
202 foreach ($this->questions as $question_id) {
204 foreach (
$mobs as $mob) {
207 $mob_obj->exportFiles($a_export_dir);
219 require_once
'Modules/TestQuestionPool/classes/class.ilAssExcelFormatHelper.php';
220 require_once
'Modules/TestQuestionPool/classes/class.assQuestion.php';
223 $worksheet->addSheet(
'Sheet 1');
227 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
"title"));
228 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
"description"));
229 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
"question_type"));
230 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
"author"));
231 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col++) . $row, $this->
lng->txt(
"create_date"));
232 $worksheet->setFormattedExcelTitle($worksheet->getColumnCoord($col) . $row, $this->
lng->txt(
"last_update"));
236 $questions = $this->qpl_obj->getQuestionList();
238 $worksheet->setCell($row, $col++, $question[
"title"]);
239 $worksheet->setCell($row, $col++, $question[
"description"]);
240 $worksheet->setCell($row, $col++, $this->
lng->txt($question[
"type_tag"]));
241 $worksheet->setCell($row, $col++, $question[
"author"]);
243 $worksheet->setCell($row, $col++,
$created);
245 $worksheet->setCell($row, $col++,
$updated);
251 $worksheet->writeToFile($excelfile);
253 if (@file_exists($this->export_dir .
"/" . $this->filename)) {
254 @unlink($this->export_dir .
"/" . $this->filename);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildExportFileXLS()
build xml export file
buildExportFile()
build export file (complete zip file)
buildExportFileXML()
build xml export file
header include for all ilias files.
exportXHTMLMediaObjects($a_export_dir)
__construct($a_qpl_obj, $a_mode="xml", $array_questions=null)
Constructor public.
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...