ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSessionImporter.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/Export/classes/class.ilXmlImporter.php");
5 
14 {
15 
19  public function init()
20  {
21  include_once("./Modules/Session/classes/class.ilSessionDataSet.php");
22  $this->ds = new ilSessionDataSet();
23  $this->ds->setDSPrefix("ds");
24  }
25 
26 
33  public function importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
34  {
35  $this->ds->setTargetId($a_mapping->getTargetId());
36  $parser = new ilDataSetImportParser(
37  $a_entity,
38  $this->getSchemaVersion(),
39  $a_xml,
40  $this->ds,
41  $a_mapping
42  );
43  }
44 }
getSchemaVersion()
Get schema version.
Manifest parser for ILIAS standard export files.
Session data set class.
Importer class for sessions.
importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
Import XML.
Xml importer class.