ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSurveyQuestionpoolExport.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected string $subdir;
27  protected string $filename;
28  protected string $export_dir;
31  public int $inst_id;
32  public string $mode;
33 
34  public function __construct(
35  ilObjSurveyQuestionPool $a_spl_obj,
36  string $a_mode = "xml"
37  ) {
38  global $DIC;
39 
40  $ilDB = $DIC->database();
41 
42  $this->spl_obj = $a_spl_obj;
43 
44  $this->db = $ilDB;
45  $this->mode = $a_mode;
46 
47  $this->inst_id = (int) IL_INST_ID;
48 
49  $date = time();
50  switch ($this->mode) {
51  default:
52  $this->export_dir = $this->spl_obj->getExportDirectory();
53  $this->subdir = $date . "__" . $this->inst_id . "__" .
54  "spl" . "_" . $this->spl_obj->getId();
55  $this->filename = $this->subdir . ".xml";
56  break;
57  }
58  }
59 
60  public function getInstId(): int
61  {
62  return $this->inst_id;
63  }
64 
65 
69  public function buildExportFile(
70  ?array $questions = null
71  ): string {
72  switch ($this->mode) {
73  default:
74  return $this->buildExportFileXML($questions);
75  }
76  }
77 
81  public function buildExportFileXML(
82  ?array $questions = null
83  ): string {
84  // create directories
85  $this->spl_obj->createExportDirectory();
86  ilFileUtils::makeDir($this->export_dir . "/" . $this->subdir);
87 
88  // get Log File
89  $expLog = new ilLog($this->spl_obj->getExportDirectory(), "export.log");
90  $expLog->delete();
91  $expLog->setLogFormat("");
92  $expLog->write(date("[y-m-d H:i:s] ") . "Start Export");
93  // write qti file
94  $qti_file = fopen($this->export_dir . "/" . $this->subdir . "/" . $this->filename, 'wb');
95  fwrite($qti_file, $this->spl_obj->toXML($questions));
96  fclose($qti_file);
97 
99  $this->export_dir . "/" . $this->subdir,
100  $this->export_dir . "/" . $this->subdir . ".zip"
101  );
102 
103  // remove created files
104  unlink($this->export_dir . "/" . $this->subdir . "/" . $this->filename);
105  rmdir($this->export_dir . "/" . $this->subdir);
106 
107  $expLog->write(date("[y-m-d H:i:s] ") . "Finished Export");
108 
109  return $this->export_dir . "/" . $this->subdir . ".zip";
110  }
111 }
const IL_INST_ID
Definition: constants.php:40
Class ilObjSurveyQuestionPool.
buildExportFile(?array $questions=null)
build export file (complete zip file)
buildExportFileXML(?array $questions=null)
build xml export file
__construct(ilObjSurveyQuestionPool $a_spl_obj, string $a_mode="xml")
delete()
delete logfile
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: class.ilLog.php:30
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
static zip(string $a_dir, string $a_file, bool $compress_content=false)
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...