ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.exQuestionPoolImporter.php
Go to the documentation of this file.
1 <?php
2 
28 {
35  public function importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping): void
36  {
44  }
45 
51  public function finalProcessing(ilImportMapping $a_mapping): void
52  {
53  global $DIC; /* @var ILIAS\DI\Container $DIC */
54 
55  $maps = $a_mapping->getMappingsOfEntity("components/ILIAS/TestQuestionPool", "qpl");
56 
57  foreach ($maps as $old => $new) {
58  if ($old != "new_id" && (int) $old > 0) {
59  $newQstIds = $a_mapping->getMapping("components/ILIAS/AssessmentQuestion", "qst", $old);
60 
61  if ($newQstIds !== false) {
62  $qstIds = explode(":", $newQstIds);
63  foreach ($qstIds as $qId) {
64  $qstInstance = $DIC->question()->getQuestionInstance($qId);
65  $qstInstance->setParentId($new);
66  $qstInstance->save();
67  }
68  }
69 
70  $qstMappings = $a_mapping->getMappingsOfEntity('components/ILIAS/AssessmentQuestion', 'qst');
71 
72  foreach ($qstMappings as $oldQstId => $newQstId) {
73  // process all question ids within the consumer component database,
74  // look for the old qst id and map to the new qst id
75  }
76  }
77  }
78  }
79 }
finalProcessing(ilImportMapping $a_mapping)
Final processing.
importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping)
getMapping(string $a_comp, string $a_entity, string $a_old_id)
getMappingsOfEntity(string $a_comp, string $a_entity)
global $DIC
Definition: shib_login.php:22
Xml importer class.