Public Member Functions

assSingleChoiceImport Class Reference
[Modules/TestQuestionPool]

Class for single choice question imports. More...

Inheritance diagram for assSingleChoiceImport:
Collaboration diagram for assSingleChoiceImport:

Public Member Functions

 fromXML (&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
 Creates a question from a QTI file.

Detailed Description

Class for single choice question imports.

assSingleChoiceImport is a class for single choice question imports

Author:
Helmut Schottmüller <helmut.schottmueller@mac.com>
Version:
$Id$

Definition at line 35 of file class.assSingleChoiceImport.php.


Member Function Documentation

assSingleChoiceImport::fromXML ( &$  item,
questionpool_id,
&$  tst_id,
&$  tst_object,
&$  question_counter,
&$  import_mapping 
)

Creates a question from a QTI file.

Receives parameters from a QTI parser and creates a valid ILIAS question object

Parameters:
object $item The QTI item object
integer $questionpool_id The id of the parent questionpool
integer $tst_id The id of the parent test if the question is part of a test
object $tst_object A reference to the parent test object
integer $question_counter A reference to a question counter to count the questions of an imported question pool
array $import_mapping An array containing references to included ILIAS objects public

Reimplemented from assQuestionImport.

Definition at line 50 of file class.assSingleChoiceImport.php.

References $_SESSION, ilObjQuestionPool::_getImportDirectory(), ilObjTest::_getImportDirectory(), ilRTE::_replaceMediaObjectImageSrc(), ilObjMediaObject::_saveTempFileAsMediaObject(), ilObjMediaObject::_saveUsage(), ilUtil::convertImage(), getContent(), and ilUtil::makeDirParents().

        {
                global $ilUser;

                // empty session variable for imported xhtml mobs
                unset($_SESSION["import_mob_xhtml"]);
                $presentation = $item->getPresentation(); 
                $duration = $item->getDuration();
                $shuffle = 0;
                $now = getdate();
                $created = sprintf("%04d%02d%02d%02d%02d%02d", $now['year'], $now['mon'], $now['mday'], $now['hours'], $now['minutes'], $now['seconds']);
                $answers = array();
                foreach ($presentation->order as $entry)
                {
                        switch ($entry["type"])
                        {
                                case "response":
                                        $response = $presentation->response[$entry["index"]];
                                        $rendertype = $response->getRenderType();
                                        switch (strtolower(get_class($response->getRenderType())))
                                        {
                                                case "ilqtirenderchoice":
                                                        $shuffle = $rendertype->getShuffle();
                                                        $answerorder = 0;
                                                        $foundimage = FALSE;
                                                        foreach ($rendertype->response_labels as $response_label)
                                                        {
                                                                $ident = $response_label->getIdent();
                                                                $answertext = "";
                                                                $answerimage = array();
                                                                foreach ($response_label->material as $mat)
                                                                {
                                                                        for ($m = 0; $m < $mat->getMaterialCount(); $m++)
                                                                        {
                                                                                $foundmat = $mat->getMaterial($m);
                                                                                if (strcmp($foundmat["type"], "mattext") == 0)
                                                                                {
                                                                                        $answertext .= $foundmat["material"]->getContent();
                                                                                }
                                                                                if (strcmp($foundmat["type"], "matimage") == 0)
                                                                                {
                                                                                        $foundimage = TRUE;
                                                                                        $answerimage = array(
                                                                                                "imagetype" => $foundmat["material"]->getImageType(),
                                                                                                "label" => $foundmat["material"]->getLabel(),
                                                                                                "content" => $foundmat["material"]->getContent()
                                                                                        );
                                                                                }
                                                                        }
                                                                }
                                                                $answers[$ident] = array(
                                                                        "answertext" => $answertext,
                                                                        "imagefile" => $answerimage,
                                                                        "points" => 0,
                                                                        "answerorder" => $answerorder++,
                                                                        "points_unchecked" => 0,
                                                                        "action" => ""
                                                                );
                                                        }
                                                        break;
                                        }
                                        break;
                        }
                }
                $responses = array();
                $feedbacks = array();
                $feedbacksgeneric = array();
                foreach ($item->resprocessing as $resprocessing)
                {
                        foreach ($resprocessing->respcondition as $respcondition)
                        {
                                $ident = "";
                                $correctness = 1;
                                $conditionvar = $respcondition->getConditionvar();
                                foreach ($conditionvar->order as $order)
                                {
                                        switch ($order["field"])
                                        {
                                                case "arr_not":
                                                        $correctness = 0;
                                                        break;
                                                case "varequal":
                                                        $ident = $conditionvar->varequal[$order["index"]]->getContent();
                                                        break;
                                        }
                                }
                                foreach ($respcondition->setvar as $setvar)
                                {
                                        if (strcmp($ident, "") != 0)
                                        {
                                                if ($correctness)
                                                {
                                                        $answers[$ident]["action"] = $setvar->getAction();
                                                        $answers[$ident]["points"] = $setvar->getContent();
                                                        if (count($respcondition->displayfeedback))
                                                        {
                                                                foreach ($respcondition->displayfeedback as $feedbackpointer)
                                                                {
                                                                        if (strlen($feedbackpointer->getLinkrefid()))
                                                                        {
                                                                                foreach ($item->itemfeedback as $ifb)
                                                                                {
                                                                                        if (strcmp($ifb->getIdent(), "response_allcorrect") == 0)
                                                                                        {
                                                                                                // found a feedback for the identifier
                                                                                                if (count($ifb->material))
                                                                                                {
                                                                                                        foreach ($ifb->material as $material)
                                                                                                        {
                                                                                                                $feedbacksgeneric[1] = $material;
                                                                                                        }
                                                                                                }
                                                                                                if ((count($ifb->flow_mat) > 0))
                                                                                                {
                                                                                                        foreach ($ifb->flow_mat as $fmat)
                                                                                                        {
                                                                                                                if (count($fmat->material))
                                                                                                                {
                                                                                                                        foreach ($fmat->material as $material)
                                                                                                                        {
                                                                                                                                $feedbacksgeneric[1] = $material;
                                                                                                                        }
                                                                                                                }
                                                                                                        }
                                                                                                }
                                                                                        } 
                                                                                        else if (strcmp($ifb->getIdent(), "response_onenotcorrect") == 0)
                                                                                        {
                                                                                                // found a feedback for the identifier
                                                                                                if (count($ifb->material))
                                                                                                {
                                                                                                        foreach ($ifb->material as $material)
                                                                                                        {
                                                                                                                $feedbacksgeneric[0] = $material;
                                                                                                        }
                                                                                                }
                                                                                                if ((count($ifb->flow_mat) > 0))
                                                                                                {
                                                                                                        foreach ($ifb->flow_mat as $fmat)
                                                                                                        {
                                                                                                                if (count($fmat->material))
                                                                                                                {
                                                                                                                        foreach ($fmat->material as $material)
                                                                                                                        {
                                                                                                                                $feedbacksgeneric[0] = $material;
                                                                                                                        }
                                                                                                                }
                                                                                                        }
                                                                                                }
                                                                                        }
                                                                                        if (strcmp($ifb->getIdent(), $feedbackpointer->getLinkrefid()) == 0)
                                                                                        {
                                                                                                // found a feedback for the identifier
                                                                                                if (count($ifb->material))
                                                                                                {
                                                                                                        foreach ($ifb->material as $material)
                                                                                                        {
                                                                                                                $feedbacks[$ident] = $material;
                                                                                                        }
                                                                                                }
                                                                                                if ((count($ifb->flow_mat) > 0))
                                                                                                {
                                                                                                        foreach ($ifb->flow_mat as $fmat)
                                                                                                        {
                                                                                                                if (count($fmat->material))
                                                                                                                {
                                                                                                                        foreach ($fmat->material as $material)
                                                                                                                        {
                                                                                                                                $feedbacks[$ident] = $material;
                                                                                                                        }
                                                                                                                }
                                                                                                        }
                                                                                                } 
                                                                                        }
                                                                                }
                                                                        }
                                                                }
                                                        }
                                                }
                                                else
                                                {
                                                        $answers[$ident]["action"] = $setvar->getAction();
                                                        $answers[$ident]["points_unchecked"] = $setvar->getContent();
                                                }
                                        }
                                }
                        }
                }
                $this->object->setTitle($item->getTitle());
                $this->object->setComment($item->getComment());
                $this->object->setAuthor($item->getAuthor());
                $this->object->setOwner($ilUser->getId());
                $this->object->setQuestion($this->object->QTIMaterialToString($item->getQuestiontext()));
                $this->object->setObjId($questionpool_id);
                $this->object->setEstimatedWorkingTime($duration["h"], $duration["m"], $duration["s"]);
                $this->object->setShuffle($shuffle);
                foreach ($answers as $answer)
                {
                        $this->object->addAnswer($answer["answertext"], $answer["points"], $answer["points_unchecked"], $answer["answerorder"], $answer["imagefile"]["label"]);
                }
                $this->object->saveToDb();
                foreach ($answers as $answer)
                {
                        if (is_array($answer["imagefile"]) && (count($answer["imagefile"]) > 0))
                        {
                                $image =& base64_decode($answer["imagefile"]["content"]);
                                $imagepath = $this->object->getImagePath();
                                include_once "./Services/Utilities/classes/class.ilUtil.php";
                                if (!file_exists($imagepath))
                                {
                                        ilUtil::makeDirParents($imagepath);
                                }
                                $imagepath .=  $answer["imagefile"]["label"];
                                $fh = fopen($imagepath, "wb");
                                if ($fh == false)
                                {
//                                                                      global $ilErr;
//                                                                      $ilErr->raiseError($this->object->lng->txt("error_save_image_file") . ": $php_errormsg", $ilErr->MESSAGE);
//                                                                      return;
                                }
                                else
                                {
                                        $imagefile = fwrite($fh, $image);
                                        fclose($fh);
                                }
                                // create thumbnail file
                                $thumbpath = $imagepath . "." . "thumb.jpg";
                                ilUtil::convertImage($imagepath, $thumbpath, "JPEG", 100);
                        }
                }
                foreach ($feedbacks as $ident => $material)
                {
                        $m = $this->object->QTIMaterialToString($material);
                        $feedbacks[$ident] = $m;
                }
                foreach ($feedbacksgeneric as $correctness => $material)
                {
                        $m = $this->object->QTIMaterialToString($material);
                        $feedbacksgeneric[$correctness] = $m;
                }
                // handle the import of media objects in XHTML code
                $questiontext = $this->object->getQuestion();
                $answers =& $this->object->getAnswers();
                if (is_array($_SESSION["import_mob_xhtml"]))
                {
                        include_once "./Services/MediaObjects/classes/class.ilObjMediaObject.php";
                        include_once "./Services/RTE/classes/class.ilRTE.php";
                        foreach ($_SESSION["import_mob_xhtml"] as $mob)
                        {
                                if ($tst_id > 0)
                                {
                                        include_once "./Modules/Test/classes/class.ilObjTest.php";
                                        $importfile = ilObjTest::_getImportDirectory() . "/" . $_SESSION["tst_import_subdir"] . "/" . $mob["uri"];
                                }
                                else
                                {
                                        include_once "./Modules/TestQuestionPool/classes/class.ilObjQuestionPool.php";
                                        $importfile = ilObjQuestionPool::_getImportDirectory() . "/" . $_SESSION["qpl_import_subdir"] . "/" . $mob["uri"];
                                }
                                $media_object =& ilObjMediaObject::_saveTempFileAsMediaObject(basename($importfile), $importfile, FALSE);
                                ilObjMediaObject::_saveUsage($media_object->getId(), "qpl:html", $this->object->getId());
                                $questiontext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $questiontext);
                                foreach ($answers as $key => $value)
                                {
                                        $answer_obj = $answers[$key];
                                        $answer_obj->setAnswertext(str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $answer_obj->getAnswertext()));
                                }
                                foreach ($feedbacks as $ident => $material)
                                {
                                        $feedbacks[$ident] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
                                }
                                foreach ($feedbacksgeneric as $correctness => $material)
                                {
                                        $feedbacksgeneric[$correctness] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
                                }
                        }
                }
                $this->object->setQuestion(ilRTE::_replaceMediaObjectImageSrc($questiontext, 1));
                foreach ($answers as $key => $value)
                {
                        $answer_obj =& $answers[$key];
                        $answer_obj->setAnswertext(ilRTE::_replaceMediaObjectImageSrc($answer_obj->getAnswertext(), 1));
                }
                foreach ($feedbacks as $ident => $material)
                {
                        $this->object->saveFeedbackSingleAnswer($ident, ilRTE::_replaceMediaObjectImageSrc($material, 1));
                }
                foreach ($feedbacksgeneric as $correctness => $material)
                {
                        $this->object->saveFeedbackGeneric($correctness, ilRTE::_replaceMediaObjectImageSrc($material, 1));
                }
                $this->object->saveToDb();
                if (count($item->suggested_solutions))
                {
                        foreach ($item->suggested_solutions as $suggested_solution)
                        {
                                $this->object->setSuggestedSolution($suggested_solution["solution"]->getContent(), $suggested_solution["gap_index"], true);
                        }
                        $this->object->saveToDb();
                }
                if ($tst_id > 0)
                {
                        $q_1_id = $this->object->getId();
                        $question_id = $this->object->duplicate(true);
                        $tst_object->questions[$question_counter++] = $question_id;
                        $import_mapping[$item->getIdent()] = array("pool" => $q_1_id, "test" => $question_id);
                }
                else
                {
                        $import_mapping[$item->getIdent()] = array("pool" => $this->object->getId(), "test" => 0);
                }
        }

Here is the call graph for this function:


The documentation for this class was generated from the following file: