ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilIndividualAssessmentImporter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
27 
28  public function init(): void
29  {
30  $this->ds = new ilIndividualAssessmentDataSet();
31  $this->ds->setImportDirectory($this->getImportDirectory());
32  $this->ds->setDSPrefix("ds");
33  }
34 
38  public function importXmlRepresentation(
39  string $a_entity,
40  string $a_id,
41  string $a_xml,
42  ilImportMapping $a_mapping
43  ): void {
44  new ilDataSetImportParser($a_entity, $this->getSchemaVersion(), $a_xml, $this->ds, $a_mapping);
45  }
46 }
Individual Assessment dataset class.
importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping)
Import xml representation.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Xml importer class.