ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilPollImporter.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  protected $ds;
16 
20  function init()
21  {
22  include_once("./Modules/Poll/classes/class.ilPollDataSet.php");
23  $this->ds = new ilPollDataSet();
24  $this->ds->setDSPrefix("ds");
25  }
26 
33  function importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
34  {
35  $this->ds->setImportDirectory($this->getImportDirectory());
36  include_once("./Services/DataSet/classes/class.ilDataSetImportParser.php");
37  $parser = new ilDataSetImportParser($a_entity, $this->getSchemaVersion(),
38  $a_xml, $this->ds, $a_mapping);
39  }
40 }
41 
42 ?>