ILIAS
release_4-4 Revision
◀ 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
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
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.ilBlogImporter.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
ilBlogImporter
extends
ilXmlImporter
14
{
15
protected
$ds
;
16
20
function
init
()
21
{
22
include_once(
"./Modules/Blog/classes/class.ilBlogDataSet.php"
);
23
$this->ds =
new
ilBlogDataSet
();
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
46
function
finalProcessing
($a_mapping)
47
{
48
$blp_map = $a_mapping->getMappingsOfEntity(
"Services/COPage"
,
"pg"
);
49
foreach
($blp_map as $blp_id)
50
{
51
$blp_id = substr($blp_id, 4);
52
$blog_id =
ilBlogPosting::lookupBlogId
($blp_id);
53
ilBlogPosting::_writeParentId
(
"blp"
, $blp_id, $blog_id);
54
}
55
}
56
}
57
58
?>
ilBlogImporter\importXmlRepresentation
importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
Import XML.
Definition:
class.ilBlogImporter.php:33
ilXmlImporter\getSchemaVersion
getSchemaVersion()
Get schema version.
Definition:
class.ilXmlImporter.php:88
ilBlogImporter\finalProcessing
finalProcessing($a_mapping)
Final processing.
Definition:
class.ilBlogImporter.php:46
ilBlogPosting\lookupBlogId
static lookupBlogId($a_posting_id)
Lookup blog id.
Definition:
class.ilBlogPosting.php:294
ilPageObject\_writeParentId
_writeParentId($a_parent_type, $a_pg_id, $a_par_id)
Write parent id.
Definition:
class.ilPageObject.php:705
ilXmlImporter\getImportDirectory
getImportDirectory()
Get import directory.
Definition:
class.ilXmlImporter.php:108
ilBlogDataSet
Blog Data set class.
Definition:
class.ilBlogDataSet.php:17
ilDataSetImportParser
Manifest parser for ILIAS standard export files.
Definition:
class.ilDataSetImportParser.php:13
ilBlogImporter
Importer class for blog.
Definition:
class.ilBlogImporter.php:13
ilBlogImporter\$ds
$ds
Definition:
class.ilBlogImporter.php:15
ilBlogImporter\init
init()
Initialisation.
Definition:
class.ilBlogImporter.php:20
ilXmlImporter
Xml importer class.
Definition:
class.ilXmlImporter.php:11
Modules
Blog
classes
class.ilBlogImporter.php
Generated on Mon Dec 21 2020 19:00:59 for ILIAS by
1.8.13 (using
Doxyfile
)