ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilNewsImporter.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  protected ilNewsDataSet $ds;
26 
27  public function init(): void
28  {
29  $this->ds = new ilNewsDataSet();
30  $this->ds->setDSPrefix("ds");
31  }
32 
33  public function importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping): void
34  {
35  $parser = new ilDataSetImportParser(
36  $a_entity,
37  $this->getSchemaVersion(),
38  $a_xml,
39  $this->ds,
40  $a_mapping
41  );
42  }
43 }
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)
Manifest parser for ILIAS standard export files.
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...