ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.assFormulaQuestionImport.php
Go to the documentation of this file.
1 <?php
2 
29 {
43  public function fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, $import_mapping): array
44  {
45  global $DIC;
46  $ilUser = $DIC['ilUser'];
47 
48  // empty session variable for imported xhtml mobs
49  ilSession::clear('import_mob_xhtml');
50 
51  $presentation = $item->getPresentation();
52  $now = getdate();
53  $created = sprintf("%04d%02d%02d%02d%02d%02d", $now['year'], $now['mon'], $now['mday'], $now['hours'], $now['minutes'], $now['seconds']);
54 
55  $feedbacksgeneric = array();
56 
57  $this->object->setTitle($item->getTitle());
58  $this->object->setComment($item->getComment());
59  $this->object->setAuthor($item->getAuthor());
60  $this->object->setOwner($ilUser->getId());
61  $this->object->setQuestion($this->object->QTIMaterialToString($item->getQuestiontext()));
62  $this->object->setObjId($questionpool_id);
63  if (preg_match_all("/(\\\$v\\d+)/ims", $this->object->getQuestion(), $matches)) {
64  foreach ($matches[1] as $variable) {
65  $data = unserialize($item->getMetadataEntry($variable), ["allowed_classes" => false]);
66  $unit = $this->object->getUnitRepository()->getUnit((int) $data["unitvalue"]);
67  $varObj = new assFormulaQuestionVariable($variable, $data["rangemin"], $data["rangemax"], $unit, $data["precision"], $data["intprecision"]);
68  $this->object->addVariable($varObj);
69  }
70  }
71  if (preg_match_all("/(\\\$r\\d+)/ims", $this->object->getQuestion(), $rmatches)) {
72  foreach ($rmatches[1] as $result) {
73  $data = unserialize($item->getMetadataEntry($result), ["allowed_classes" => false]);
74  $unit = $this->object->getUnitRepository()->getUnit((int) $data["unitvalue"]);
75  if (!is_array($data["rating"])) {
76  $resObj = new assFormulaQuestionResult($result, $data["rangemin"], $data["rangemax"], $data["tolerance"], $unit, $data["formula"], $data["points"], $data["precision"], true);
77  } else {
78  $resObj = new assFormulaQuestionResult($result, $data["rangemin"], $data["rangemax"], $data["tolerance"], $unit, $data["formula"], $data["points"], $data["precision"], false, $data["rating"]["sign"], $data["rating"]["value"], $data["rating"]["unit"]);
79  }
80  if (array_key_exists('resulttype', $data)) {
81  $resObj->setResultType($data["resulttype"]);
82  }
83  $this->object->addResult($resObj);
84  if (is_array($data["resultunits"])) {
85  foreach ($data["resultunits"] as $resu) {
86  $ru = $this->object->getUnitRepository()->getUnit($resu["unitvalue"]);
87  if (is_object($ru)) {
88  $this->object->addResultUnit($resObj, $ru);
89  }
90  }
91  }
92  }
93  }
94  $this->object->setPoints($item->getMetadataEntry("points"));
95  $this->addGeneralMetadata($item);
96  // additional content editing mode information
97  $this->object->setAdditionalContentEditingMode(
99  );
100  $this->object->saveToDb();
101  // handle the import of media objects in XHTML code
102  $questiontext = $this->object->getQuestion();
103  $feedbacksgeneric = $this->getFeedbackGeneric($item);
104 
105  if (is_array(ilSession::get("import_mob_xhtml"))) {
106  foreach (ilSession::get("import_mob_xhtml") as $mob) {
107  if ($tst_id > 0) {
108  $importfile = ilObjTest::_getImportDirectory() . "/" . ilSession::get("tst_import_subdir") . "/" . $mob["uri"];
109  } else {
110  $importfile = ilObjQuestionPool::_getImportDirectory() . "/" . ilSession::get("qpl_import_subdir") . "/" . $mob["uri"];
111  }
112  $media_object = ilObjMediaObject::_saveTempFileAsMediaObject(basename($importfile), $importfile, false);
113  ilObjMediaObject::_saveUsage($media_object->getId(), "qpl:html", $this->object->getId());
114  $questiontext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $questiontext);
115 
116  foreach ($feedbacksgeneric as $correctness => $material) {
117  $feedbacksgeneric[$correctness] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
118  }
119  }
120  }
121  $this->object->setQuestion(ilRTE::_replaceMediaObjectImageSrc($questiontext, 1));
122 
123  foreach ($feedbacksgeneric as $correctness => $material) {
124  $this->object->feedbackOBJ->importGenericFeedback(
125  $this->object->getId(),
126  $correctness,
128  );
129  }
130 
131  // additional content editing mode information
132  $this->object->setAdditionalContentEditingMode(
134  );
135 
136  $this->object->saveToDb();
137  if (count($item->suggested_solutions)) {
138  foreach ($item->suggested_solutions as $suggested_solution) {
139  $this->object->setSuggestedSolution($suggested_solution["solution"]->getContent(), $suggested_solution["gap_index"], true);
140  }
141  $this->object->saveToDb();
142  }
143  if ($tst_id > 0) {
144  $q_1_id = $this->object->getId();
145  $question_id = $this->object->duplicate();
146  $tst_object->questions[$question_counter++] = $question_id;
147  $import_mapping[$item->getIdent()] = array("pool" => $q_1_id, "test" => $question_id);
148  } else {
149  $import_mapping[$item->getIdent()] = array("pool" => $this->object->getId(), "test" => 0);
150  }
151  return $import_mapping;
152  }
153 }
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
static get(string $a_var)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addGeneralMetadata(ilQTIItem $item)
const IL_INST_ID
Definition: constants.php:40
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...
fetchAdditionalContentEditingModeInformation($qtiItem)
fetches the "additional content editing mode" information from qti item and falls back to ADDITIONAL_...
static _saveUsage(int $a_mob_id, string $a_type, int $a_id, int $a_usage_hist_nr=0, string $a_lang="-")
Save usage of mob within another container (e.g.
global $DIC
Definition: feed.php:28
static _saveTempFileAsMediaObject(string $name, string $tmp_name, bool $upload=true)
Create new media object and update page in db and return new media object.
fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, $import_mapping)
Creates a question from a QTI file.
$ilUser
Definition: imgupload.php:34
static _getImportDirectory()
get import directory of lm
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static clear(string $a_var)
int $created
Timestamp for when the object was created.
Definition: System.php:151
static _getImportDirectory()
Get the import directory location of the test.