40 string $a_mode =
"xml",
45 $ilDB = $DIC->database();
47 $this->cont_obj = $a_cont_obj;
50 $this->mode = $a_mode;
51 $this->lang = $a_lang;
56 switch ($this->mode) {
58 if ($this->lang ==
"") {
59 $this->export_dir = $this->cont_obj->getExportDirectory(
"html");
61 $this->export_dir = $this->cont_obj->getExportDirectory(
"html_" . $this->lang);
63 $this->subdir = $this->cont_obj->getType() .
"_" . $this->cont_obj->getId();
64 $this->filename = $this->subdir .
".zip";
68 $this->export_dir = $this->cont_obj->getExportDirectory();
69 $this->subdir = $date .
"__" . $this->inst_id .
"__" .
70 $this->cont_obj->getType() .
"_" . $this->cont_obj->getId();
71 $this->filename = $this->subdir .
".xml";
84 switch ($this->mode) {
101 if (in_array($a_mode, array(
"master",
"masternomedia"))) {
103 $conf = $exp->getConfig(
"Modules/LearningModule");
104 $conf->setMasterLanguageOnly(
true, ($a_mode ==
"master"));
105 $exp->exportObject($this->cont_obj->getType(), $this->cont_obj->getId(),
"5.1.0");
112 $this->xml->xmlSetDtdDef(
"<!DOCTYPE ContentObject SYSTEM \"https://www.ilias.de/download/dtd/ilias_co_3_7.dtd\">");
115 $this->xml->xmlSetGenCmt(
"Export of ILIAS Content Module " .
116 $this->cont_obj->getId() .
" of installation " . $this->inst .
".");
119 $this->xml->xmlHeader();
122 $this->cont_obj->createExportDirectory();
127 $expDir = $this->cont_obj->getExportDirectory();
128 $expLog =
new ilLog($expDir,
"export.log");
130 $expLog->setLogFormat(
"");
131 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Start Export");
134 $this->cont_obj->exportXML(
137 $this->export_dir .
"/" . $this->subdir,
153 $this->xml->xmlDumpFile($this->export_dir .
"/" . $this->subdir .
"/" . $this->filename,
false);
157 $this->cont_obj->getRefId()
162 $this->cont_obj->getId(),
172 $this->export_dir .
"/" . $this->subdir,
173 $this->export_dir .
"/" . $this->subdir .
".zip" 176 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Finished Export");
178 return $this->export_dir .
"/" . $this->subdir .
".zip";
184 if ($this->lang ==
"") {
185 $this->cont_obj->createExportDirectory(
"html");
187 $this->cont_obj->createExportDirectory(
"html_" . $this->lang);
191 $exp = new \ILIAS\LearningModule\Export\LMHtmlExport(
198 $exp->exportHTML(
true);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjLearningModule $cont_obj
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...
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...
buildExportFileXML(string $a_mode="")
build xml export file
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
__construct(ilObjLearningModule $a_cont_obj, string $a_mode="xml", string $a_lang="")
buildExportFile(string $a_mode="")
static isOnlineHelpModule(int $a_id, bool $a_as_obj_id=false)
Is module an online module.
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...