ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.assOrderingHorizontalImport.php
Go to the documentation of this file.
1 <?php
2  /*
3  +----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +----------------------------------------------------------------------------+
22 */
23 
24 include_once "./Modules/TestQuestionPool/classes/import/qti12/class.assQuestionImport.php";
25 
36 {
50  function fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
51  {
52  global $ilUser;
53 
54  // empty session variable for imported xhtml mobs
55  unset($_SESSION["import_mob_xhtml"]);
56  $presentation = $item->getPresentation();
57  $duration = $item->getDuration();
58  $now = getdate();
59  $created = sprintf("%04d%02d%02d%02d%02d%02d", $now['year'], $now['mon'], $now['mday'], $now['hours'], $now['minutes'], $now['seconds']);
60 
61  $feedbacksgeneric = array();
62 
63  $this->object->setTitle($item->getTitle());
64  $this->object->setExternalID($item->getMetadataEntry("externalID"));
65  $this->object->setNrOfTries($item->getMaxattempts());
66  $this->object->setComment($item->getComment());
67  $this->object->setAuthor($item->getAuthor());
68  $this->object->setOwner($ilUser->getId());
69  $this->object->setQuestion($this->object->QTIMaterialToString($item->getQuestiontext()));
70  $this->object->setObjId($questionpool_id);
71  $this->object->setEstimatedWorkingTime($duration["h"], $duration["m"], $duration["s"]);
72  $this->object->setPoints($item->getMetadataEntry("points"));
73  $this->object->setOrderText($item->getMetadataEntry("ordertext"));
74  $this->object->setTextSize($item->getMetadataEntry("textsize"));
75  $this->object->setSeparator($item->getMetadataEntry("separator"));
76  $this->object->saveToDb();
77 
78  // handle the import of media objects in XHTML code
79  $questiontext = $this->object->getQuestion();
80  if (is_array($_SESSION["import_mob_xhtml"]))
81  {
82  include_once "./Services/MediaObjects/classes/class.ilObjMediaObject.php";
83  include_once "./Services/RTE/classes/class.ilRTE.php";
84  foreach ($_SESSION["import_mob_xhtml"] as $mob)
85  {
86  if ($tst_id > 0)
87  {
88  include_once "./Modules/Test/classes/class.ilObjTest.php";
89  $importfile = ilObjTest::_getImportDirectory() . "/" . $mob["uri"];
90  }
91  else
92  {
93  include_once "./Modules/TestQuestionPool/classes/class.ilObjQuestionPool.php";
94  $importfile = ilObjQuestionPool::_getImportDirectory() . "/" . $_SESSION["qpl_import_subdir"] . "/" . $mob["uri"];
95  }
96  $media_object =& ilObjMediaObject::_saveTempFileAsMediaObject(basename($importfile), $importfile, FALSE);
97  ilObjMediaObject::_saveUsage($media_object->getId(), "qpl:html", $this->object->getId());
98  $questiontext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $questiontext);
99  }
100  }
101  $this->object->setQuestion(ilRTE::_replaceMediaObjectImageSrc($questiontext, 1));
102  $this->object->saveToDb();
103  if (count($item->suggested_solutions))
104  {
105  foreach ($item->suggested_solutions as $suggested_solution)
106  {
107  $this->object->setSuggestedSolution($suggested_solution["solution"]->getContent(), $suggested_solution["gap_index"], true);
108  }
109  $this->object->saveToDb();
110  }
111  if ($tst_id > 0)
112  {
113  $q_1_id = $this->object->getId();
114  $question_id = $this->object->duplicate(true);
115  $tst_object->questions[$question_counter++] = $question_id;
116  $import_mapping[$item->getIdent()] = array("pool" => $q_1_id, "test" => $question_id);
117  }
118  else
119  {
120  $import_mapping[$item->getIdent()] = array("pool" => $this->object->getId(), "test" => 0);
121  }
122  }
123 }
124 
125 ?>