ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.assQuestionImport.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once "./Modules/Test/classes/inc.AssessmentConstants.php";
5 
16 {
24  public $object;
25 
32  public function __construct($a_object)
33  {
34  $this->object = $a_object;
35  }
36 
37  public function getFeedbackGeneric($item)
38  {
39  $feedbacksgeneric = array();
40  foreach ($item->resprocessing as $resprocessing) {
41  foreach ($resprocessing->respcondition as $respcondition) {
42  foreach ($respcondition->displayfeedback as $feedbackpointer) {
43  if (strlen($feedbackpointer->getLinkrefid())) {
44  foreach ($item->itemfeedback as $ifb) {
45  if (strcmp($ifb->getIdent(), "response_allcorrect") == 0) {
46  // found a feedback for the identifier
47  if (count($ifb->material)) {
48  foreach ($ifb->material as $material) {
49  $feedbacksgeneric[1] = $material;
50  }
51  }
52  if ((count($ifb->flow_mat) > 0)) {
53  foreach ($ifb->flow_mat as $fmat) {
54  if (count($fmat->material)) {
55  foreach ($fmat->material as $material) {
56  $feedbacksgeneric[1] = $material;
57  }
58  }
59  }
60  }
61  } elseif (strcmp($ifb->getIdent(), "response_onenotcorrect") == 0) {
62  // found a feedback for the identifier
63  if (count($ifb->material)) {
64  foreach ($ifb->material as $material) {
65  $feedbacksgeneric[0] = $material;
66  }
67  }
68  if ((count($ifb->flow_mat) > 0)) {
69  foreach ($ifb->flow_mat as $fmat) {
70  if (count($fmat->material)) {
71  foreach ($fmat->material as $material) {
72  $feedbacksgeneric[0] = $material;
73  }
74  }
75  }
76  }
77  }
78  }
79  }
80  }
81  }
82  }
83  // handle the import of media objects in XHTML code
84  foreach ($feedbacksgeneric as $correctness => $material) {
85  $m = $this->object->QTIMaterialToString($material);
86  $feedbacksgeneric[$correctness] = $m;
87  }
88  return $feedbacksgeneric;
89  }
90 
96  protected function fetchIndexFromFeedbackIdent($feedbackIdent, $prefix = 'response_')
97  {
98  return (int) str_replace($prefix, '', $feedbackIdent);
99  }
100 
106  protected function getFeedbackAnswerSpecific(ilQTIItem $item, $prefix = 'response_')
107  {
108  $feedbacks = array();
109 
110  foreach ($item->itemfeedback as $ifb) {
111  if ($ifb->getIdent() == 'response_allcorrect' || $ifb->getIdent() == 'response_onenotcorrect') {
112  continue;
113  }
114 
115  if ($ifb->getIdent() == $prefix . 'allcorrect' || $ifb->getIdent() == $prefix . 'onenotcorrect') {
116  continue;
117  }
118 
119  if (substr($ifb->getIdent(), 0, strlen($prefix)) != $prefix) {
120  continue;
121  }
122 
123  $ident = $ifb->getIdent();
124 
125  // found a feedback for the identifier
126 
127  if (count($ifb->material)) {
128  foreach ($ifb->material as $material) {
129  $feedbacks[$ident] = $material;
130  }
131  }
132 
133  if ((count($ifb->flow_mat) > 0)) {
134  foreach ($ifb->flow_mat as $fmat) {
135  if (count($fmat->material)) {
136  foreach ($fmat->material as $material) {
137  $feedbacks[$ident] = $material;
138  }
139  }
140  }
141  }
142  }
143 
144  foreach ($feedbacks as $ident => $material) {
145  $m = $this->object->QTIMaterialToString($material);
146  $feedbacks[$ident] = $m;
147  }
148 
149  return $feedbacks;
150  }
151 
165  public function fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
166  {
167  }
168 
172  protected function addGeneralMetadata(ilQTIItem $item)
173  {
174  if ($item->getMetadataEntry('externalID')) {
175  $this->object->setExternalId($item->getMetadataEntry('externalID'));
176  } else {
177  $this->object->setExternalId($item->getMetadataEntry('externalId'));
178  }
179 
180  $this->object->setLifecycle($this->fetchLifecycle($item));
181  }
182 
187  protected function fetchLifecycle(ilQTIItem $item)
188  {
189  try {
191  $item->getMetadataEntry('ilias_lifecycle')
192  );
194  try {
195  $lomLifecycle = new ilAssQuestionLomLifecycle(
196  $item->getMetadataEntry('lifecycle')
197  );
198 
200  $lomLifecycle->getMappedIliasLifecycleIdentifer()
201  );
204  }
205  }
206 
207  return $lifecycle;
208  }
209 
213  protected function getQplImportArchivDirectory()
214  {
215  include_once "./Modules/TestQuestionPool/classes/class.ilObjQuestionPool.php";
216  return ilObjQuestionPool::_getImportDirectory() . '/' . $_SESSION["qpl_import_subdir"];
217  }
218 
222  protected function getTstImportArchivDirectory()
223  {
224  include_once "./Modules/Test/classes/class.ilObjTest.php";
225  return ilObjTest::_getImportDirectory() . '/' . $_SESSION["tst_import_subdir"];
226  }
227 
228  protected function processNonAbstractedImageReferences($text, $sourceNic)
229  {
230  $reg = '/<img.*src=".*\\/mm_(\\d+)\\/(.*?)".*>/m';
231  $matches = null;
232 
233  if (preg_match_all($reg, $text, $matches)) {
234  for ($i = 0, $max = count($matches[1]); $i < $max; $i++) {
235  $mobSrcId = $matches[1][$i];
236  $mobSrcName = $matches[2][$i];
237  $mobSrcLabel = 'il_' . $sourceNic . '_mob_' . $mobSrcId;
238 
239  if (!is_array($_SESSION["import_mob_xhtml"])) {
240  $_SESSION["import_mob_xhtml"] = array();
241  }
242 
243  $_SESSION["import_mob_xhtml"][] = array(
244  "mob" => $mobSrcLabel, "uri" => 'objects/' . $mobSrcLabel . '/' . $mobSrcName
245  );
246  }
247  }
248 
249  include_once "./Services/RTE/classes/class.ilRTE.php";
250  return ilRTE::_replaceMediaObjectImageSrc($text, 0, $sourceNic);
251  }
252 
262  final protected function fetchAdditionalContentEditingModeInformation($qtiItem)
263  {
264  $additionalContentEditingMode = $qtiItem->getMetadataEntry('additional_cont_edit_mode');
265 
266  if (!$this->object->isValidAdditionalContentEditingMode($additionalContentEditingMode)) {
267  $additionalContentEditingMode = assQuestion::ADDITIONAL_CONTENT_EDITING_MODE_DEFAULT;
268  }
269 
270  return $additionalContentEditingMode;
271  }
272 }
getFeedbackAnswerSpecific(ilQTIItem $item, $prefix='response_')
addGeneralMetadata(ilQTIItem $item)
$_SESSION["AccountId"]
processNonAbstractedImageReferences($text, $sourceNic)
fetchAdditionalContentEditingModeInformation($qtiItem)
fetches the "additional content editing mode" information from qti item and falls back to ADDITIONAL_...
getQplImportArchivDirectory()
returns the full path to extracted qpl import archiv (qpl import dir + qpl archiv subdir) ...
getMetadataEntry($a_label)
fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
Creates a question from a QTI file.
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...
fetchLifecycle(ilQTIItem $item)
const ADDITIONAL_CONTENT_EDITING_MODE_DEFAULT
constant for additional content editing mode "default"
getTstImportArchivDirectory()
returns the full path to extracted tst import archiv (tst import dir + tst archiv subdir) ...
static _getImportDirectory()
get import directory of lm
__construct($a_object)
assQuestionImport constructor
Class for question imports.
fetchIndexFromFeedbackIdent($feedbackIdent, $prefix='response_')
static _getImportDirectory()
Get the import directory location of the test.
$i
Definition: metadata.php:24