ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilHTMLLearningModuleImporter.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once("./Services/Export/classes/class.ilXmlImporter.php");
5
14{
15
19 public function init()
20 {
21 include_once("./Modules/HTMLLearningModule/classes/class.ilHTMLLearningModuleDataSet.php");
22 $this->ds = new ilHTMLLearningModuleDataSet();
23 $this->ds->setDSPrefix("ds");
24 $this->ds->setImportDirectory($this->getImportDirectory());
25 }
26
27
34 public function importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
35 {
36 include_once("./Services/DataSet/classes/class.ilDataSetImportParser.php");
38 $a_entity,
39 $this->getSchemaVersion(),
40 $a_xml,
41 $this->ds,
42 $a_mapping
43 );
44 }
45}
$parser
Definition: BPMN2Parser.php:23
An exception for terminatinating execution or to throw for unit testing.
Manifest parser for ILIAS standard export files.
HTML learning module data set class.
Importer class for html learning modules.
importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
Import XML.
Xml importer class.
getSchemaVersion()
Get schema version.
getImportDirectory()
Get import directory.