ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilRatingImporter.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected ilRatingDataSet $ds;
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 }
init()
Initialisation.
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)
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...
Xml importer class.