ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
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
l
m
n
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.ilBlogImporter.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4
10
class
ilBlogImporter
extends
ilXmlImporter
11
{
12
protected
$ds
;
13
17
public
function
init
()
18
{
19
$this->ds =
new
ilBlogDataSet
();
20
$this->ds->setDSPrefix(
"ds"
);
21
}
22
29
public
function
importXmlRepresentation
($a_entity, $a_id, $a_xml, $a_mapping)
30
{
31
$this->ds->setImportDirectory($this->
getImportDirectory
());
32
$parser =
new
ilDataSetImportParser
(
33
$a_entity,
34
$this->
getSchemaVersion
(),
35
$a_xml,
36
$this->ds,
37
$a_mapping
38
);
39
}
40
46
public
function
finalProcessing
($a_mapping)
47
{
48
$blp_map = $a_mapping->getMappingsOfEntity(
"Services/COPage"
,
"pg"
);
49
foreach
($blp_map as $blp_id) {
50
$blp_id = substr($blp_id, 4);
51
$blog_id =
ilBlogPosting::lookupBlogId
($blp_id);
52
ilBlogPosting::_writeParentId
(
"blp"
, $blp_id, $blog_id);
53
}
54
55
$sty_map = $a_mapping->getMappingsOfEntity(
"Services/Style"
,
"sty"
);
56
foreach
($sty_map as $old_sty_id => $new_sty_id) {
57
if
(is_array(
ilBlogDataSet::$style_map
[$old_sty_id])) {
58
foreach
(
ilBlogDataSet::$style_map
[$old_sty_id] as $blog_id) {
59
ilObjStyleSheet::writeStyleUsage
($blog_id, $new_sty_id);
60
}
61
}
62
}
63
}
64
}
ilBlogImporter\importXmlRepresentation
importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping)
Import XML.
Definition:
class.ilBlogImporter.php:29
ilXmlImporter\getSchemaVersion
getSchemaVersion()
Get schema version.
Definition:
class.ilXmlImporter.php:107
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:330
ilXmlImporter\getImportDirectory
getImportDirectory()
Get import directory.
Definition:
class.ilXmlImporter.php:127
ilBlogDataSet
Blog Data set class.
Definition:
class.ilBlogDataSet.php:14
ilDataSetImportParser
Manifest parser for ILIAS standard export files.
Definition:
class.ilDataSetImportParser.php:13
ilObjStyleSheet\writeStyleUsage
static writeStyleUsage($a_obj_id, $a_style_id)
Write style usage.
Definition:
class.ilObjStyleSheet.php:3657
ilPageObject\_writeParentId
static _writeParentId($a_parent_type, $a_pg_id, $a_par_id)
Write parent id.
Definition:
class.ilPageObject.php:743
ilBlogImporter
Importer class for blog.
Definition:
class.ilBlogImporter.php:10
ilBlogDataSet\$style_map
static $style_map
Definition:
class.ilBlogDataSet.php:18
ilBlogImporter\$ds
$ds
Definition:
class.ilBlogImporter.php:12
ilBlogImporter\init
init()
Initialisation.
Definition:
class.ilBlogImporter.php:17
ilXmlImporter
Xml importer class.
Definition:
class.ilXmlImporter.php:11
Modules
Blog
classes
class.ilBlogImporter.php
Generated on Thu Apr 3 2025 21:00:51 for ILIAS by
1.8.13 (using
Doxyfile
)