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.ilHelpMetaBarProvider.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\GlobalScreen\Identification\IdentificationInterface
;
20
use
ILIAS\GlobalScreen\Scope\MetaBar\Provider\AbstractStaticMetaBarProvider
;
21
use
ILIAS\GlobalScreen\Scope\MetaBar\Provider\StaticMetaBarProvider
;
22
use
ILIAS\UI\Implementation\Component\Button\Bulky
as
BulkyButton
;
23
use
ILIAS\UI\Implementation\Component\Link\Bulky
as BulkyLink;
24
25
class
ilHelpMetaBarProvider
extends
AbstractStaticMetaBarProvider
26
{
27
use
ilHelpDisplayed
;
28
29
private
function
getId
():
IdentificationInterface
30
{
31
return
$this->
if
->identifier(
'help'
);
32
}
33
34
public
function
getMetaBarItems
(): array
35
{
36
global
$DIC
;
37
38
$mb = $this->
globalScreen
()->metaBar();
39
40
$f
= $DIC->ui()->factory();
41
42
$title = $DIC->language()->txt(
"help"
);
43
44
if
($this->showHelpTool()) {
45
// position should be 0, see bug #26794
46
$item = $mb->topLinkItem($this->
getId
())
47
->addComponentDecorator(
static
function
(
ILIAS
\
UI
\
Component
\
Component
$c
): ?
ILIAS
\
UI
\
Component
\
Component
{
48
if
($c instanceof
BulkyButton
|| $c instanceof BulkyLink) {
49
return
$c->withAdditionalOnLoadCode(
static
function
(
string
$id
):
string
{
50
return
"$('#$id').on('click', function() {
51
$('body').trigger('il-help-toggle-slate');
52
return false;
53
})"
;
54
});
55
}
56
return
null
;
57
})
58
->
withSymbol
(
$f
->symbol()->glyph()->help())
59
->
withTitle
($title)
60
->withPosition(0);
61
62
return
[$item];
63
}
64
65
return
[];
66
}
67
}
ILIAS\GlobalScreen\Provider\AbstractProvider\globalScreen
globalScreen()
Definition:
AbstractProvider.php:38
ILIAS
Interface Observer Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
ILIAS\GlobalScreen\Identification\IdentificationInterface
Interface IdentificationInterface.
Definition:
IdentificationInterface.php:29
Factory
ilHelpMetaBarProvider
Definition:
class.ilHelpMetaBarProvider.php:25
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\Link\Bulky
Definition:
Bulky.php:27
$c
$c
Definition:
deliver.php:25
StaticMetaBarProvider
AbstractStaticMetaBarProvider
ilHelpDisplayed
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\GlobalScreen\Scope\MetaBar\Provider\AbstractStaticMetaBarProvider
Interface AbstractStaticMetaBarProvider.
Definition:
AbstractStaticMetaBarProvider.php:31
IdentificationInterface
ilHelpMetaBarProvider\getId
getId()
Definition:
class.ilHelpMetaBarProvider.php:29
Vendor\Package\$f
$f
Definition:
example_cleaned.php:49
ILIAS\GlobalScreen\Scope\MainMenu\Factory\withSymbol
withSymbol(Symbol $symbol)
Definition:
hasSymbolTrait.php:38
$DIC
global $DIC
Definition:
shib_login.php:22
ILIAS\GlobalScreen\Scope\Footer\Factory\withTitle
withTitle(string $title)
Definition:
hasTitleTrait.php:35
ilHelpMetaBarProvider\getMetaBarItems
getMetaBarItems()
Definition:
class.ilHelpMetaBarProvider.php:34
$id
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition:
plugin.php:23
Bulky
components
ILIAS
Help
GlobalScreen
classes
class.ilHelpMetaBarProvider.php
Generated on Wed Apr 2 2025 23:02:59 for ILIAS by
1.8.13 (using
Doxyfile
)