ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilTaxonomyImporter.php
Go to the documentation of this file.
1<?php
2
24{
26
30 public function init(): void
31 {
32 $this->ds = new ilTaxonomyDataSet();
33 $this->ds->setDSPrefix("ds");
34 }
35
36 public function importXmlRepresentation(
37 string $a_entity,
38 string $a_id,
39 string $a_xml,
40 ilImportMapping $a_mapping
41 ): void {
42 $parser = new ilDataSetImportParser(
43 $a_entity,
44 $this->getSchemaVersion(),
45 $a_xml,
46 $this->ds,
47 $a_mapping
48 );
49 }
50}
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...
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.