ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilIndividualAssessmentImporter.php
Go to the documentation of this file.
1<?php
2
19declare(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}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Individual Assessment dataset class.
importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping)
Import xml representation.
Xml importer class.