ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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...
Exercise data set class.
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)
Xml importer class.