ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilWikiImporter.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  function init()
20  {
21  include_once("./Modules/Wiki/classes/class.ilWikiDataSet.php");
22  $this->ds = new ilWikiDataSet();
23  $this->ds->setDSPrefix("ds");
24  }
25 
26 
33  function importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
34  {
35  include_once("./Services/DataSet/classes/class.ilDataSetImportParser.php");
36  $parser = new ilDataSetImportParser($a_entity, $this->getSchemaVersion(),
37  $a_xml, $this->ds, $a_mapping);
38  }
39 
45  function finalProcessing($a_mapping)
46  {
47  $wpg_map = $a_mapping->getMappingsOfEntity("Modules/Wiki", "wpg");
48 
49  include_once("./Modules/Wiki/classes/class.ilWikiPage.php");
50  foreach ($wpg_map as $wpg_id)
51  {
52  $wiki_id = ilWikiPage::lookupWikiId($wpg_id);
53  ilWikiPage::_writeParentId("wpg", $wpg_id, $wiki_id);
54  }
55  }
56 
57 }
58 
59 ?>
getSchemaVersion()
Get schema version.
finalProcessing($a_mapping)
Final processing.
importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
Import XML.
Manifest parser for ILIAS standard export files.
Importer class for wikis.
static lookupWikiId($a_page_id)
Lookup wiki id.
init()
Initialisation.
static _writeParentId($a_parent_type, $a_pg_id, $a_par_id)
Write parent id.
Wiki Data set class.
$parser
Definition: BPMN2Parser.php:24
Xml importer class.