ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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.ilSimpleXMLTableDataParser.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8
class
ilSimpleXMLTableDataParser
extends
ilSaxParser
9
{
10
14
protected
$table
;
18
protected
$file
= null;
22
protected
$xml
= null;
26
protected
$value
=
''
;
27
28
34
public
function
__construct
($a_xml)
35
{
36
$this->file = $a_xml;
37
$this->xml = simplexml_load_file($this->file);
38
}
39
40
41
public
function
startParsing
()
42
{
43
global
$DIC
;
44
$ilDB
= $DIC->database();
45
46
$table
= $this->xml->xpath(
'/Table'
);
47
foreach
(
$table
[0]->attributes() as $k => $v) {
48
$this->table = $v;
49
}
50
51
foreach
($this->xml->Row as $row) {
52
$data
= array();
53
foreach
($row->children() as
$value
) {
54
$type
= (string)
$value
[
'type'
];
55
$content = (string)
$value
;
56
$data
[(string)
$value
[
'name'
]] = array(
57
$type
,
58
$content,
59
);
60
}
61
$ilDB
->insert($this->table,
$data
);
62
}
63
}
64
}
$data
$data
Definition:
storeScorm.php:23
ilSimpleXMLTableDataParser
Definition:
class.ilSimpleXMLTableDataParser.php:8
$type
$type
Definition:
proxy_ylocal.php:10
ilSimpleXMLTableDataParser\__construct
__construct($a_xml)
ilSimpleXMLTableDataParser constructor.
Definition:
class.ilSimpleXMLTableDataParser.php:34
ilSimpleXMLTableDataParser\$xml
$xml
Definition:
class.ilSimpleXMLTableDataParser.php:22
ilSaxParser
Base class for sax-based expat parsing extended classes need to overwrite the method setHandlers and ...
Definition:
class.ilSaxParser.php:17
ilSimpleXMLTableDataParser\$table
$table
Definition:
class.ilSimpleXMLTableDataParser.php:14
ilSimpleXMLTableDataParser\$value
$value
Definition:
class.ilSimpleXMLTableDataParser.php:26
$ilDB
global $ilDB
Definition:
storeScorm2004.php:16
$DIC
$DIC
Definition:
xapitoken.php:46
ilSimpleXMLTableDataParser\$file
$file
Definition:
class.ilSimpleXMLTableDataParser.php:18
ilSimpleXMLTableDataParser\startParsing
startParsing()
Definition:
class.ilSimpleXMLTableDataParser.php:41
Services
Database
classes
class.ilSimpleXMLTableDataParser.php
Generated on Wed Apr 2 2025 20:01:12 for ILIAS by
1.8.13 (using
Doxyfile
)