ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
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
13
class
ilWikiImporter
extends
ilXmlImporter
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
?>
ilXmlImporter\getSchemaVersion
getSchemaVersion()
Get schema version.
Definition:
class.ilXmlImporter.php:88
ilWikiImporter\finalProcessing
finalProcessing($a_mapping)
Final processing.
Definition:
class.ilWikiImporter.php:45
ilPageObject\_writeParentId
_writeParentId($a_parent_type, $a_pg_id, $a_par_id)
Write parent id.
Definition:
class.ilPageObject.php:706
ilWikiImporter\importXmlRepresentation
importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
Import XML.
Definition:
class.ilWikiImporter.php:33
ilDataSetImportParser
Manifest parser for ILIAS standard export files.
Definition:
class.ilDataSetImportParser.php:13
ilWikiImporter
Importer class for wikis.
Definition:
class.ilWikiImporter.php:13
ilWikiPage\lookupWikiId
static lookupWikiId($a_page_id)
Lookup wiki id.
Definition:
class.ilWikiPage.php:482
ilWikiImporter\init
init()
Initialisation.
Definition:
class.ilWikiImporter.php:19
ilWikiDataSet
Wiki Data set class.
Definition:
class.ilWikiDataSet.php:17
ilXmlImporter
Xml importer class.
Definition:
class.ilXmlImporter.php:11
Modules
Wiki
classes
class.ilWikiImporter.php
Generated on Mon Mar 31 2025 19:00:41 for ILIAS by
1.8.13 (using
Doxyfile
)