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