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
OrgUnitTree.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\OrgUnit\Webservices\SOAP
;
4
5
use
ilOrgUnitExporter
;
6
12
class
OrgUnitTree
extends
Base
13
{
14
const
ORGU_REF_ID
=
'orgu_ref_id'
;
15
const
ORG_UNIT_TREE
=
'OrgUnitTree'
;
16
17
23
protected
function
run
(array $params)
24
{
25
$orgu_ref_id = $params[self::ORGU_REF_ID];
26
27
$orgu_exporter =
new
ilOrgUnitExporter
();
28
29
$writer = $orgu_exporter->simpleExport($orgu_ref_id);
30
31
return
$writer->xmlFormatData($writer->xmlStr);
32
}
33
34
38
public
function
getName
()
39
{
40
return
"getOrgUnitsSimpleXML"
;
41
}
42
43
47
protected
function
getAdditionalInputParams
()
48
{
49
return
array(
50
self::ORGU_REF_ID =>
Base::TYPE_INT
,
51
);
52
}
53
54
58
public
function
getOutputParams
()
59
{
60
return
array(self::ORG_UNIT_TREE =>
Base::TYPE_STRING
);
61
}
62
63
67
public
function
getDocumentation
()
68
{
69
return
"Returns the ILIAS Organisational Units (SimpleXML)"
;
70
}
71
}
ILIAS\OrgUnit\Webservices\SOAP
Definition:
AddUserIdToPositionInOrgUnit.php:3
ILIAS\OrgUnit\Webservices\SOAP\OrgUnitTree\getAdditionalInputParams
getAdditionalInputParams()
Definition:
OrgUnitTree.php:47
ILIAS\OrgUnit\Webservices\SOAP\OrgUnitTree\ORG_UNIT_TREE
const ORG_UNIT_TREE
Definition:
OrgUnitTree.php:15
ILIAS\OrgUnit\Webservices\SOAP\OrgUnitTree\run
run(array $params)
Definition:
OrgUnitTree.php:23
ILIAS\OrgUnit\Webservices\SOAP\Base
Class Base.
Definition:
Base.php:18
ilOrgUnitExporter
ILIAS\OrgUnit\Webservices\SOAP\OrgUnitTree\ORGU_REF_ID
const ORGU_REF_ID
Definition:
OrgUnitTree.php:14
ILIAS\OrgUnit\Webservices\SOAP\OrgUnitTree
Class OrgUnitTree.
Definition:
OrgUnitTree.php:12
ILIAS\OrgUnit\Webservices\SOAP\Base\TYPE_STRING
const TYPE_STRING
Definition:
Base.php:25
ILIAS\OrgUnit\Webservices\SOAP\OrgUnitTree\getDocumentation
getDocumentation()
Get the documentation of this method.string
Definition:
OrgUnitTree.php:67
ILIAS\OrgUnit\Webservices\SOAP\Base\TYPE_INT
const TYPE_INT
Definition:
Base.php:26
ILIAS\OrgUnit\Webservices\SOAP\OrgUnitTree\getName
getName()
Definition:
OrgUnitTree.php:38
ILIAS\OrgUnit\Webservices\SOAP\OrgUnitTree\getOutputParams
getOutputParams()
Get the output parameters in the same format as the input parameters.array
Definition:
OrgUnitTree.php:58
Modules
OrgUnit
classes
Webservices
SOAP
OrgUnitTree.php
Generated on Thu Apr 3 2025 21:00:58 for ILIAS by
1.8.13 (using
Doxyfile
)