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.ilUserInterfaceHookPlugin.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
include_once(
"./Services/Component/classes/class.ilPlugin.php"
);
6
14
abstract
class
ilUserInterfaceHookPlugin
extends
ilPlugin
15
{
21
final
function
getComponentType
()
22
{
23
return
IL_COMP_SERVICE
;
24
}
25
31
final
function
getComponentName
()
32
{
33
return
"UIComponent"
;
34
}
35
41
final
function
getSlot
()
42
{
43
return
"UserInterfaceHook"
;
44
}
45
51
final
function
getSlotId
()
52
{
53
return
"uihk"
;
54
}
55
59
protected
final
function
slotInit
()
60
{
61
// nothing to do here
62
}
63
67
function
getUIClassInstance
()
68
{
69
$class =
"il"
.$this->getPluginName().
"UIHookGUI"
;
70
$this->
includeClass
(
"class."
.$class.
".php"
);
71
$obj =
new
$class();
72
$obj->setPluginObject($this);
73
return
$obj;
74
}
75
}
76
?>
ilUserInterfaceHookPlugin\getSlot
getSlot()
Get Slot Name.
Definition:
class.ilUserInterfaceHookPlugin.php:41
ilPlugin\includeClass
includeClass($a_class_file_name)
Include (once) a class file.
Definition:
class.ilPlugin.php:293
ilUserInterfaceHookPlugin\getComponentType
getComponentType()
Get Component Type.
Definition:
class.ilUserInterfaceHookPlugin.php:21
ilPlugin
Definition:
class.ilPlugin.php:16
ilUserInterfaceHookPlugin\getSlotId
getSlotId()
Get Slot ID.
Definition:
class.ilUserInterfaceHookPlugin.php:51
ilUserInterfaceHookPlugin\getComponentName
getComponentName()
Get Component Name.
Definition:
class.ilUserInterfaceHookPlugin.php:31
ilUserInterfaceHookPlugin
User interface hook plugin.
Definition:
class.ilUserInterfaceHookPlugin.php:14
IL_COMP_SERVICE
const IL_COMP_SERVICE
Definition:
class.ilComponent.php:6
ilUserInterfaceHookPlugin\getUIClassInstance
getUIClassInstance()
Get UI plugin class.
Definition:
class.ilUserInterfaceHookPlugin.php:67
ilUserInterfaceHookPlugin\slotInit
slotInit()
Object initialization done by slot.
Definition:
class.ilUserInterfaceHookPlugin.php:59
Services
UIComponent
classes
class.ilUserInterfaceHookPlugin.php
Generated on Mon Dec 21 2020 19:01:25 for ILIAS by
1.8.13 (using
Doxyfile
)