4include_once 
"./Modules/TestQuestionPool/classes/import/qti12/class.assQuestionImport.php";
 
   28    public function fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
 
   35        $presentation = $item->getPresentation();
 
   36        $duration = $item->getDuration();
 
   38        $created = sprintf(
"%04d%02d%02d%02d%02d%02d", $now[
'year'], $now[
'mon'], $now[
'mday'], $now[
'hours'], $now[
'minutes'], $now[
'seconds']);
 
   40        $feedbacksgeneric = array();
 
   43        $this->
object->setTitle($item->getTitle());
 
   44        $this->
object->setNrOfTries($item->getMaxattempts());
 
   45        $this->
object->setComment($item->getComment());
 
   46        $this->
object->setAuthor($item->getAuthor());
 
   47        $this->
object->setOwner(
$ilUser->getId());
 
   48        $this->
object->setQuestion($this->object->QTIMaterialToString($item->getQuestiontext()));
 
   49        $this->
object->setObjId($questionpool_id);
 
   50        $this->
object->setEstimatedWorkingTime($duration[
"h"], $duration[
"m"], $duration[
"s"]);
 
   51        $this->
object->setWidth($item->getMetadataEntry(
"width"));
 
   52        $this->
object->setHeight($item->getMetadataEntry(
"height"));
 
   53        $this->
object->setApplet($item->getMetadataEntry(
"applet"));
 
   54        $this->
object->setParameters(unserialize($item->getMetadataEntry(
"params")));
 
   55        $this->
object->setPoints($item->getMetadataEntry(
"points"));
 
   57        $this->
object->setAdditionalContentEditingMode(
 
   60        $this->
object->saveToDb();
 
   62        $flashapplet = &base64_decode($item->getMetadataEntry(
"swf"));
 
   63        if (!file_exists($this->object->getFlashPath())) {
 
   64            include_once 
"./Services/Utilities/classes/class.ilUtil.php";
 
   67        $filename = $this->
object->getFlashPath() . $this->
object->getApplet();
 
   75            fwrite($fh, $flashapplet);
 
   82        $questiontext = $this->
object->getQuestion();
 
   83        if (is_array(
$_SESSION[
"import_mob_xhtml"])) {
 
   84            include_once 
"./Services/MediaObjects/classes/class.ilObjMediaObject.php";
 
   85            include_once 
"./Services/RTE/classes/class.ilRTE.php";
 
   86            foreach (
$_SESSION[
"import_mob_xhtml"] as $mob) {
 
   94                $DIC[
'ilLog']->write(__METHOD__ . 
': import mob from dir: ' . $importfile);
 
   98                $questiontext = str_replace(
"src=\"" . $mob[
"mob"] . 
"\"", 
"src=\"" . 
"il_" . IL_INST_ID . 
"_mob_" . $media_object->getId() . 
"\"", $questiontext);
 
   99                foreach ($feedbacksgeneric as $correctness => $material) {
 
  100                    $feedbacksgeneric[$correctness] = str_replace(
"src=\"" . $mob[
"mob"] . 
"\"", 
"src=\"" . 
"il_" . IL_INST_ID . 
"_mob_" . $media_object->getId() . 
"\"", $material);
 
  105        foreach ($feedbacksgeneric as $correctness => $material) {
 
  106            $this->
object->feedbackOBJ->importGenericFeedback(
 
  107                $this->object->getId(),
 
  112        $this->
object->saveToDb();
 
  113        if (count($item->suggested_solutions)) {
 
  114            foreach ($item->suggested_solutions as $suggested_solution) {
 
  115                $this->
object->setSuggestedSolution($suggested_solution[
"solution"]->getContent(), $suggested_solution[
"gap_index"], 
true);
 
  117            $this->
object->saveToDb();
 
  120            $q_1_id = $this->
object->getId();
 
  121            $question_id = $this->
object->duplicate(
true, 
null, 
null, 
null, $tst_id);
 
  122            $tst_object->questions[$question_counter++] = $question_id;
 
  123            $import_mapping[$item->getIdent()] = array(
"pool" => $q_1_id, 
"test" => $question_id);
 
  125            $import_mapping[$item->getIdent()] = array(
"pool" => $this->object->getId(), 
"test" => 0);
 
An exception for terminatinating execution or to throw for unit testing.
Class for flash question imports.
fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
Creates a question from a QTI file.
Class for question imports.
fetchAdditionalContentEditingModeInformation($qtiItem)
fetches the "additional content editing mode" information from qti item and falls back to ADDITIONAL_...
getTstImportArchivDirectory()
returns the full path to extracted tst import archiv (tst import dir + tst archiv subdir)
addGeneralMetadata(ilQTIItem $item)
getQplImportArchivDirectory()
returns the full path to extracted qpl import archiv (qpl import dir + qpl archiv subdir)
getFeedbackGeneric($item)
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...
static makeDirParents($a_dir)
Create a new directory and all parent directories.