ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilExerciseImporter.php
Go to the documentation of this file.
1 <?php
2 
25 {
27 
28  public function init(): void
29  {
30  $this->ds = new ilExerciseDataSet();
31  $this->ds->setDSPrefix("ds");
32  $this->ds->setImportDirectory($this->getImportDirectory());
33  }
34 
35  public function importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping): void
36  {
38  $a_entity,
39  $this->getSchemaVersion(),
40  $a_xml,
41  $this->ds,
42  $a_mapping
43  );
44  }
45 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping)
Exercise data set class.
Xml importer class.