Creates a question from a QTI file. 
        {
                
                $presentation = $item->getPresentation(); 
                $duration = $item->getDuration();
                $now = getdate();
                $maxchars = 0;
                $maxpoints = 0;
                $created = sprintf("%04d%02d%02d%02d%02d%02d", $now['year'], $now['mon'], $now['mday'], $now['hours'], $now['minutes'], $now['seconds']);
                foreach ($presentation->order as $entry)
                {
                        switch ($entry["type"])
                        {
                                case "response":
                                        $response = $presentation->response[$entry["index"]];
                                        $rendertype = $response->getRenderType(); 
                                        switch (strtolower(get_class($rendertype)))
                                        {
                                                case "ilqtirenderfib":
                                                        $maxchars = $rendertype->getMaxchars();
                                                        break;
                                        }
                                        break;
                        }
                }
                $feedbacksgeneric = array();
                foreach ($item->resprocessing as $resprocessing)
                {
                        $outcomes = $resprocessing->getOutcomes();
                        foreach ($outcomes->decvar as $decvar)
                        {
                                $maxpoints = $decvar->getMaxvalue();
                        }
                        foreach ($resprocessing->respcondition as $respcondition)
                        {
                                foreach ($respcondition->displayfeedback as $feedbackpointer)
                                {
                                        if (strlen($feedbackpointer->getLinkrefid()))
                                        {
                                                foreach ($item->itemfeedback as $ifb)
                                                {
                                                        if (strcmp($ifb->getIdent(), "response_allcorrect") == 0)
                                                        {
                                                                
                                                                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)
                                                        {
                                                                
                                                                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;
                                                                                        }
                                                                                }
                                                                        }
                                                                }
                                                        }
                                                }
                                        }
                                }
                        }
                }
                
                $this->object->setTitle($item->getTitle());
                $this->object->setNrOfTries($item->getMaxattempts());
                $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->setPoints($maxpoints);
                $this->object->setMaxNumOfChars($maxchars);
                $textrating = $item->getMetadataEntry("textrating");
                if (strlen($textrating))
                {
                        $this->object->setTextRating($textrating);
                }
                $this->object->matchcondition = (strlen($item->getMetadataEntry('matchcondition'))) ? $item->getMetadataEntry('matchcondition') : 0;
                
                require_once './Modules/TestQuestionPool/classes/class.assAnswerMultipleResponseImage.php';
                $no_keywords_found=true;
                
                $termscoring = ( is_array($termscoring) ? $termscoring : array() );
                for ($i = 0; $i < count($termscoring); $i++ )
                {
                        $this->object->addAnswer($termscoring[$i]->getAnswertext(), $termscoring[$i]->getPoints() );
                        $no_keywords_found=false;
                }
                if(count($termscoring))
                {
                        $this->object->setKeywordRelation($item->getMetadataEntry('termrelation'));
                }
                
                $keywords = $item->getMetadataEntry("keywords");
                if (strlen($keywords))
                {
                        #$this->object->setKeywords($keywords);
                        $answers = explode(' ', $keywords);
                        foreach ($answers as $answer)
                        {
                                $this->object->addAnswer($answer, 0);   
                        }
                        $this->object->setKeywordRelation('one');
                        $no_keywords_found=false;
                }
                if($no_keywords_found)
                {
                        $this->object->setKeywordRelation('non');
                }
                
                $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();
                }
                foreach ($feedbacksgeneric as $correctness => $material)
                {
                        $m = $this->object->QTIMaterialToString($material);
                        $feedbacksgeneric[$correctness] = $m;
                }
                
                $questiontext = $this->object->getQuestion();
                {
                        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)
                                {
                                }
                                else
                                {
                                }
                                
                                $GLOBALS[
'ilLog']->write(__METHOD__.
': import mob from dir: '. $importfile);
 
                                
                                $questiontext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $questiontext);
                                foreach ($feedbacksgeneric as $correctness => $material)
                                {
                                        $feedbacksgeneric[$correctness] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
                                }
                        }
                }
                foreach ($feedbacksgeneric as $correctness => $material)
                {
                }
                $this->object->saveToDb();
                if ($tst_id > 0)
                {
                        $q_1_id = $this->object->getId();
                        $question_id = $this->object->duplicate(true, null, null, null, $tst_id);
                        $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);
                }
        }