ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.assFileUploadImport.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once "./Modules/TestQuestionPool/classes/import/qti12/class.assQuestionImport.php";
5 
14 {
28  function fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
29  {
30  global $ilUser;
31 
32  // empty session variable for imported xhtml mobs
33  unset($_SESSION["import_mob_xhtml"]);
34  $presentation = $item->getPresentation();
35  $duration = $item->getDuration();
36  $now = getdate();
37  $created = sprintf("%04d%02d%02d%02d%02d%02d", $now['year'], $now['mon'], $now['mday'], $now['hours'], $now['minutes'], $now['seconds']);
38 
39  $feedbacksgeneric = array();
40 
41  $this->addGeneralMetadata($item);
42  $this->object->setTitle($item->getTitle());
43  $this->object->setNrOfTries($item->getMaxattempts());
44  $this->object->setComment($item->getComment());
45  $this->object->setAuthor($item->getAuthor());
46  $this->object->setOwner($ilUser->getId());
47  $this->object->setQuestion($this->object->QTIMaterialToString($item->getQuestiontext()));
48  $this->object->setObjId($questionpool_id);
49  $this->object->setEstimatedWorkingTime($duration["h"], $duration["m"], $duration["s"]);
50  $this->object->setPoints($item->getMetadataEntry("points"));
51  $this->object->setMaxSize($item->getMetadataEntry("maxsize"));
52  $this->object->setAllowedExtensions($item->getMetadataEntry("allowedextensions"));
53  // additional content editing mode information
54  $this->object->setAdditionalContentEditingMode(
56  );
57  $this->object->saveToDb();
58 
59  $feedbacksgeneric = $this->getFeedbackGeneric($item);
60 
61  // handle the import of media objects in XHTML code
62  $questiontext = $this->object->getQuestion();
63  if (is_array($_SESSION["import_mob_xhtml"]))
64  {
65  include_once "./Services/MediaObjects/classes/class.ilObjMediaObject.php";
66  include_once "./Services/RTE/classes/class.ilRTE.php";
67  foreach ($_SESSION["import_mob_xhtml"] as $mob)
68  {
69  if ($tst_id > 0)
70  {
71  $importfile = $this->getTstImportArchivDirectory() . '/' . $mob["uri"];
72  }
73  else
74  {
75  $importfile = $this->getQplImportArchivDirectory() . '/' . $mob["uri"];
76  }
77 
78  $GLOBALS['ilLog']->write(__METHOD__.': import mob from dir: '. $importfile);
79 
80  $media_object =& ilObjMediaObject::_saveTempFileAsMediaObject(basename($importfile), $importfile, FALSE);
81  ilObjMediaObject::_saveUsage($media_object->getId(), "qpl:html", $this->object->getId());
82  $questiontext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $questiontext);
83  foreach ($feedbacksgeneric as $correctness => $material)
84  {
85  $feedbacksgeneric[$correctness] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
86  }
87  }
88  }
89  $this->object->setQuestion(ilRTE::_replaceMediaObjectImageSrc($questiontext, 1));
90  foreach ($feedbacksgeneric as $correctness => $material)
91  {
92  $this->object->feedbackOBJ->importGenericFeedback(
93  $this->object->getId(), $correctness, ilRTE::_replaceMediaObjectImageSrc($material, 1)
94  );
95  }
96  $this->object->saveToDb();
97  if (count($item->suggested_solutions))
98  {
99  foreach ($item->suggested_solutions as $suggested_solution)
100  {
101  $this->object->setSuggestedSolution($suggested_solution["solution"]->getContent(), $suggested_solution["gap_index"], true);
102  }
103  $this->object->saveToDb();
104  }
105  if ($tst_id > 0)
106  {
107  $q_1_id = $this->object->getId();
108  $question_id = $this->object->duplicate(true, null, null, null, $tst_id);
109  $tst_object->questions[$question_counter++] = $question_id;
110  $import_mapping[$item->getIdent()] = array("pool" => $q_1_id, "test" => $question_id);
111  }
112  else
113  {
114  $import_mapping[$item->getIdent()] = array("pool" => $this->object->getId(), "test" => 0);
115  }
116  }
117 }
118 
119 ?>
addGeneralMetadata(ilQTIItem $item)
$_SESSION["AccountId"]
$GLOBALS['loaded']
Global hash that tracks already loaded includes.
fetchAdditionalContentEditingModeInformation($qtiItem)
fetches the "additional content editing mode" information from qti item and falls back to ADDITIONAL_...
getQplImportArchivDirectory()
returns the full path to extracted qpl import archiv (qpl import dir + qpl archiv subdir) ...
static _replaceMediaObjectImageSrc($a_text, $a_direction=0, $nic=IL_INST_ID)
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
Class for file upload question imports.
static _saveTempFileAsMediaObject($name, $tmp_name, $upload=TRUE)
Create new media object and update page in db and return new media object.
$ilUser
Definition: imgupload.php:18
Create styles array
The data for the language used.
Create new PHPExcel object
obj_idprivate
getTstImportArchivDirectory()
returns the full path to extracted tst import archiv (tst import dir + tst archiv subdir) ...
fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
Creates a question from a QTI file.
Class for question imports.
static _saveUsage($a_mob_id, $a_type, $a_id, $a_usage_hist_nr=0, $a_lang="-")
Save usage of mob within another container (e.g.