Creates a question from a QTI file.
{
$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']);
$definitions = array();
$terms = array();
$foundimage = FALSE;
foreach ($presentation->order as $entry)
{
switch ($entry["type"])
{
case "response":
$response = $presentation->response[$entry["index"]];
$rendertype = $response->getRenderType();
switch (strtolower(get_class($rendertype)))
{
case "ilqtirenderchoice":
$shuffle = $rendertype->getShuffle();
$answerorder = 0;
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()
);
}
}
}
if (($response_label->getMatchMax() == 1) && (strlen($response_label->getMatchGroup())))
{
$definitions[$ident] = array(
"answertext" => $answertext,
"answerimage" => $answerimage,
"points" => 0,
"answerorder" => $ident,
"action" => ""
);
}
else
{
$terms[$ident] = array(
"term" => $answertext,
"answerimage" => $answerimage,
"points" => 0,
"ident" => $ident,
"action" => ""
);
}
}
break;
}
break;
}
}
$responses = array();
$feedbacksgeneric = array();
foreach ($item->resprocessing as $resprocessing)
{
foreach ($resprocessing->respcondition as $respcondition)
{
$subset = array();
$correctness = 1;
$conditionvar = $respcondition->getConditionvar();
foreach ($conditionvar->order as $order)
{
switch ($order["field"])
{
case "varsubset":
$subset = split(",", $conditionvar->varsubset[$order["index"]]->getContent());
break;
}
}
foreach ($respcondition->setvar as $setvar)
{
array_push($responses, array("subset" => $subset, "action" => $setvar->getAction(), "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)
{
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;
}
}
}
}
}
}
}
}
}
}
}
include_once "./Modules/TestQuestionPool/classes/class.assAnswerMatchingTerm.php";
include_once "./Modules/TestQuestionPool/classes/class.assAnswerMatchingDefinition.php";
include_once "./Modules/TestQuestionPool/classes/class.assAnswerMatchingPair.php";
$this->object->createNewQuestion();
$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"]);
$extended_shuffle = $item->getMetadataEntry("shuffle");
$this->object->setThumbGeometry($item->getMetadataEntry("thumb_geometry"));
if( strlen($item->getMetadataEntry('matching_mode')) )
{
$this->object->setMatchingMode($item->getMetadataEntry('matching_mode'));
}
else
{
}
foreach ($terms as $term)
{
if (count($term[
'answerimage'])) $this->
saveImage($term[
'answerimage'][
'content'], $term[
'answerimage'][
'label']);
}
foreach ($definitions as $definition)
{
if (count($definition[
'answerimage'])) $this->
saveImage($definition[
'answerimage'][
'content'], $definition[
'answerimage'][
'label']);
}
foreach ($terms as $termindex => $term)
{
$this->
object->addTerm(
new assAnswerMatchingTerm($term[
"term"], $term[
'answerimage'][
'label'], $term[
"ident"]));
}
foreach ($definitions as $definitionindex => $definition)
{
$this->
object->addDefinition(
new assAnswerMatchingDefinition($definition[
"answertext"], $definition[
'answerimage'][
'label'], $definition[
"answerorder"]));
}
if (strlen($extended_shuffle) > 0)
{
$shuffle = $extended_shuffle;
}
$this->object->setShuffle($shuffle);
foreach ($responses as $response)
{
$subset = $response["subset"];
foreach ($subset as $ident)
{
if (array_key_exists($ident, $definitions))
{
$definition = $definitions[$ident];
}
if (array_key_exists($ident, $terms))
{
$term = $terms[$ident];
}
}
}
$this->object->setAdditionalContentEditingMode(
);
$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 ($responses as $response)
{
$subset = $response["subset"];
foreach ($subset as $ident)
{
if (array_key_exists($ident, $definitions))
{
$definition = $definitions[$ident];
}
if (array_key_exists($ident, $terms))
{
$term = $terms[$ident];
}
}
}
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->feedbackOBJ->importGenericFeedback(
);
}
$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);
}
}