ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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
test_ctrl_structure.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
require_once __DIR__ .
'/../../../interfaces/interface.ilCtrlStructureInterface.php'
;
22
23
return
[
24
'ilctrlbaseclass1testgui'
=> [
25
ilCtrlStructureInterface::KEY_CLASS_CID
=>
'0'
,
26
ilCtrlStructureInterface::KEY_CLASS_NAME
=>
'ilCtrlBaseClass1TestGUI'
,
27
ilCtrlStructureInterface::KEY_CLASS_PATH
=>
'./components/ILIAS/UICore/tests/Data/GUI/class.ilCtrlBaseClass1TestGUI.php'
,
28
ilCtrlStructureInterface::KEY_CLASS_PARENTS
=> [],
29
ilCtrlStructureInterface::KEY_CLASS_CHILDREN
=> [
30
'ilctrlcommandclass1testgui'
,
31
'ilias\\tests\\ctrl\\ilctrlnamespacedtestgui'
,
32
],
33
],
34
35
'ilctrlbaseclass2testgui'
=> [
36
ilCtrlStructureInterface::KEY_CLASS_CID
=>
'1'
,
37
ilCtrlStructureInterface::KEY_CLASS_NAME
=>
'ilCtrlBaseClass2TestGUI'
,
38
ilCtrlStructureInterface::KEY_CLASS_PATH
=>
'./components/ILIAS/UICore/tests/Data/GUI/class.ilCtrlBaseClass2TestGUI.php'
,
39
ilCtrlStructureInterface::KEY_CLASS_PARENTS
=> [
40
'ilctrlcommandclass1testgui'
41
],
42
ilCtrlStructureInterface::KEY_CLASS_CHILDREN
=> [
43
'ilctrlcommandclass1testgui'
,
44
],
45
],
46
47
'ilctrlcommandclass1testgui'
=> [
48
ilCtrlStructureInterface::KEY_CLASS_CID
=>
'2'
,
49
ilCtrlStructureInterface::KEY_CLASS_NAME
=>
'ilCtrlCommandClass1TestGUI'
,
50
ilCtrlStructureInterface::KEY_CLASS_PATH
=>
'./components/ILIAS/UICore/tests/Data/GUI/class.ilCtrlCommandClass1TestGUI.php'
,
51
ilCtrlStructureInterface::KEY_CLASS_PARENTS
=> [
52
'ilctrlbaseclass1testgui'
,
53
'ilctrlbaseclass2testgui'
,
54
],
55
ilCtrlStructureInterface::KEY_CLASS_CHILDREN
=> [
56
'ilctrlbaseclass2testgui'
,
57
'ilctrlcommandclass2testgui'
,
58
],
59
],
60
61
'ilctrlcommandclass2testgui'
=> [
62
ilCtrlStructureInterface::KEY_CLASS_CID
=>
'3'
,
63
ilCtrlStructureInterface::KEY_CLASS_NAME
=>
'ilCtrlCommandClass2TestGUI'
,
64
ilCtrlStructureInterface::KEY_CLASS_PATH
=>
'./components/ILIAS/UICore/tests/Data/GUI/class.ilCtrlCommandClass2TestGUI.php'
,
65
ilCtrlStructureInterface::KEY_CLASS_PARENTS
=> [
66
'ilctrlcommandclass1testgui'
,
67
],
68
ilCtrlStructureInterface::KEY_CLASS_CHILDREN
=> [],
69
],
70
71
'ilias\\tests\\ctrl\\ilctrlnamespacedtestgui'
=> [
72
ilCtrlStructureInterface::KEY_CLASS_CID
=>
'4'
,
73
ilCtrlStructureInterface::KEY_CLASS_NAME
=>
'ILIAS\\Tests\\Ctrl\\ilCtrlNamespacedTestGUI'
,
74
ilCtrlStructureInterface::KEY_CLASS_PATH
=>
'./components/ILIAS/UICore/tests/Data/GUI/class.ilCtrlNamespacedTestGUI.php'
,
75
ilCtrlStructureInterface::KEY_CLASS_PARENTS
=> [
76
'ilctrlbaseclass1testgui'
,
77
],
78
ilCtrlStructureInterface::KEY_CLASS_CHILDREN
=> [],
79
]
80
];
ilCtrlStructureInterface\KEY_CLASS_CHILDREN
const KEY_CLASS_CHILDREN
Definition:
interface.ilCtrlStructureInterface.php:34
ilCtrlStructureInterface\KEY_CLASS_NAME
const KEY_CLASS_NAME
Definition:
interface.ilCtrlStructureInterface.php:31
ilCtrlStructureInterface\KEY_CLASS_PARENTS
const KEY_CLASS_PARENTS
Definition:
interface.ilCtrlStructureInterface.php:33
ilCtrlStructureInterface\KEY_CLASS_CID
const KEY_CLASS_CID
array key constants that are used for certain information.
Definition:
interface.ilCtrlStructureInterface.php:29
ilCtrlStructureInterface\KEY_CLASS_PATH
const KEY_CLASS_PATH
Definition:
interface.ilCtrlStructureInterface.php:30
components
ILIAS
UICore
tests
Data
Structure
test_ctrl_structure.php
Generated on Wed Apr 2 2025 23:04:06 for ILIAS by
1.8.13 (using
Doxyfile
)