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
class.ilUIHookProcessor.php
Go to the documentation of this file.
1
<?php
2
24
class
ilUIHookProcessor
25
{
26
private
bool
$replaced
=
false
;
27
protected
array
$append
= [];
28
protected
array
$prepend
= [];
29
protected
string
$replace
=
''
;
30
31
public
function
__construct
(
32
string
$a_comp,
33
string
$a_part,
34
array $a_pars
35
) {
36
global
$DIC
;
37
38
$component_factory = $DIC[
"component.factory"
];
39
40
// user interface hook [uihk]
41
foreach
($component_factory->getActivePluginsInSlot(
"uihk"
) as
$plugin
) {
45
$gui_class =
$plugin
->getUIClassInstance();
46
$resp
= $gui_class->getHTML($a_comp, $a_part, $a_pars);
47
48
$mode =
$resp
[
'mode'
];
49
if
($mode !==
ilUIHookPluginGUI::KEEP
) {
50
$html =
$resp
[
'html'
];
51
switch
($mode) {
52
case
ilUIHookPluginGUI::PREPEND
:
53
$this->prepend[] = $html;
54
break
;
55
56
case
ilUIHookPluginGUI::APPEND
:
57
$this->append[] = $html;
58
break
;
59
60
case
ilUIHookPluginGUI::REPLACE
:
61
if
(!$this->
replaced
) {
62
$this->replace = $html;
63
$this->
replaced
=
true
;
64
}
65
break
;
66
}
67
}
68
}
69
}
70
71
75
public
function
replaced
(): bool
76
{
77
return
$this->replaced
;
78
}
79
80
public
function
getHTML
(
string
$html): string
81
{
82
if
($this->
replaced
) {
83
$html =
$this->replace
;
84
}
85
foreach
($this->append as
$a
) {
86
$html .=
$a
;
87
}
88
foreach
($this->prepend as $p) {
89
$html = $p . $html;
90
}
91
92
return
$html;
93
}
94
}
ilUIHookProcessor\getHTML
getHTML(string $html)
Definition:
class.ilUIHookProcessor.php:80
ilUIHookProcessor\$append
array $append
Definition:
class.ilUIHookProcessor.php:27
ilUIHookPluginGUI\REPLACE
const REPLACE
Definition:
class.ilUIHookPluginGUI.php:30
ilUIHookPluginGUI\KEEP
const KEEP
Definition:
class.ilUIHookPluginGUI.php:29
ilUIHookProcessor\replaced
replaced()
Definition:
class.ilUIHookProcessor.php:75
XapiProxy\$plugin
$plugin
Definition:
xapiproxy.php:27
$DIC
global $DIC
Definition:
shib_login.php:22
XapiProxy\$resp
$resp
Definition:
xapiproxy.php:92
ilUIHookProcessor\$prepend
array $prepend
Definition:
class.ilUIHookProcessor.php:28
ilUIHookPluginGUI\APPEND
const APPEND
Definition:
class.ilUIHookPluginGUI.php:31
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ilUIHookProcessor\$replaced
bool $replaced
Definition:
class.ilUIHookProcessor.php:26
ilUIHookPluginGUI\PREPEND
const PREPEND
Definition:
class.ilUIHookPluginGUI.php:32
Vendor\Package\$a
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
Definition:
example_cleaned.php:49
ilUIHookProcessor
ilUIHookProcessor\$replace
string $replace
Definition:
class.ilUIHookProcessor.php:29
components
ILIAS
UIComponent
classes
class.ilUIHookProcessor.php
Generated on Wed Apr 2 2025 23:04:05 for ILIAS by
1.8.13 (using
Doxyfile
)