ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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
4include_once("./Services/Export/classes/class.ilXmlImporter.php");
5
14{
15
19 public 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 public function importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
34 {
35 include_once("./Services/DataSet/classes/class.ilDataSetImportParser.php");
37 $a_entity,
38 $this->getSchemaVersion(),
39 $a_xml,
40 $this->ds,
41 $a_mapping
42 );
43 }
44
50 public function finalProcessing($a_mapping)
51 {
52 $wpg_map = $a_mapping->getMappingsOfEntity("Modules/Wiki", "wpg");
53
54 include_once("./Modules/Wiki/classes/class.ilWikiPage.php");
55 foreach ($wpg_map as $wpg_id) {
56 $wiki_id = ilWikiPage::lookupWikiId($wpg_id);
57 ilWikiPage::_writeParentId("wpg", $wpg_id, $wiki_id);
58 }
59 }
60}
$parser
Definition: BPMN2Parser.php:23
An exception for terminatinating execution or to throw for unit testing.
Manifest parser for ILIAS standard export files.
static _writeParentId($a_parent_type, $a_pg_id, $a_par_id)
Write parent id.
Wiki Data set class.
Importer class for wikis.
finalProcessing($a_mapping)
Final processing.
importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
Import XML.
init()
Initialisation.
static lookupWikiId($a_page_id)
Lookup wiki id.
Xml importer class.
getSchemaVersion()
Get schema version.