ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilCalendarExporter.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
26
class
ilCalendarExporter
extends
ilXmlExporter
27
{
28
private
ilCalendarDataSet
$ds
;
29
33
public
function
init
(): void
34
{
35
$this->ds =
new
ilCalendarDataSet
();
36
$this->ds->initByExporter($this);
37
$this->ds->setDSPrefix(
"ds"
);
38
}
39
43
public
function
getXmlRepresentation
(
string
$a_entity,
string
$a_schema_version,
string
$a_id): string
44
{
45
$this->ds->initByExporter($this);
46
return
$this->ds->getXmlRepresentation($a_entity, $a_schema_version, [$a_id],
""
,
true
,
true
);
47
}
48
52
public
function
getValidSchemaVersions
(
string
$a_entity): array
53
{
54
return
array(
55
"4.3.0"
=> array(
56
"namespace"
=>
"http://www.ilias.de/Services/Calendar/cal/4_3"
,
57
"xsd_file"
=>
"ilias_cal_4_3.xsd"
,
58
"uses_dataset"
=>
true
,
59
"min"
=>
"4.3.0"
,
60
"max"
=>
""
61
)
62
);
63
}
64
}
ilCalendarExporter\init
init()
Definition:
class.ilCalendarExporter.php:33
ilXmlExporter
ilCalendarExporter\getValidSchemaVersions
getValidSchemaVersions(string $a_entity)
Definition:
class.ilCalendarExporter.php:52
ilCalendarExporter
Exporter class for calendar data (xml)
Definition:
class.ilCalendarExporter.php:26
ilCalendarExporter\$ds
ilCalendarDataSet $ds
Definition:
class.ilCalendarExporter.php:28
ilCalendarDataSet
Calendar data set class.
Definition:
class.ilCalendarDataSet.php:26
ilCalendarExporter\getXmlRepresentation
getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id)
Definition:
class.ilCalendarExporter.php:43
components
ILIAS
Calendar
classes
class.ilCalendarExporter.php
Generated on Sat Apr 5 2025 23:02:43 for ILIAS by
1.8.13 (using
Doxyfile
)