ILIAS
release_4-4 Revision
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
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
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
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.ilObjectListGUIFactory.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
13
class
ilObjectListGUIFactory
14
{
15
function
&
_getListGUIByType
($a_type)
16
{
17
global $objDefinition;
18
19
$class = $objDefinition->getClassName($a_type);
20
$location
= $objDefinition->getLocation($a_type);
21
$full_class =
"ilObj"
.$class.
"ListGUI"
;
22
if
(@include_once(
$location
.
"/class."
.$full_class.
".php"
))
23
{
24
return
new
$full_class();
25
}
26
27
include_once
'./Services/Object/classes/class.ilObjectListGUI.php'
;
28
return
new
ilObjectListGUI
($a_type);
29
}
30
31
}
// END class.ilObjectListGUIFactory
32
?>
$location
$location
Definition:
buildRTE.php:44
ilObjectListGUI
Class ilObjectListGUI.
Definition:
class.ilObjectListGUI.php:23
ilObjectListGUIFactory\_getListGUIByType
& _getListGUIByType($a_type)
Definition:
class.ilObjectListGUIFactory.php:15
ilObjectListGUIFactory
Class ilObjectListGUIFactory.
Definition:
class.ilObjectListGUIFactory.php:13
Services
Object
classes
class.ilObjectListGUIFactory.php
Generated on Mon Dec 21 2020 19:01:19 for ILIAS by
1.8.13 (using
Doxyfile
)