ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
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
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilHelpMetaBarProvider.php
Go to the documentation of this file.
1
<?php
2
3
use
ILIAS\GlobalScreen\Identification\IdentificationInterface
;
4
use
ILIAS\GlobalScreen\Scope\MetaBar\Provider\AbstractStaticMetaBarProvider
;
5
use
ILIAS\GlobalScreen\Scope\MetaBar\Provider\StaticMetaBarProvider
;
6
use
ILIAS\UI\Implementation\Component\Button\Bulky
as
BulkyButton
;
7
use
ILIAS\UI\Implementation\Component\Link\Bulky
as BulkyLink;
8
13
class
ilHelpMetaBarProvider
extends
AbstractStaticMetaBarProvider
implements
StaticMetaBarProvider
14
{
15
use
ilHelpDisplayed
;
16
20
private
function
getId
() :
IdentificationInterface
21
{
22
return
$this->
if
->identifier(
'help'
);
23
}
24
28
public
function
getMetaBarItems
() : array
29
{
30
global
$DIC
;
31
32
$mb = $this->
globalScreen
()->metaBar();
33
34
$f
= $DIC->ui()->factory();
35
36
$title = $DIC->language()->txt(
"help"
);
37
38
if
($this->showHelpTool()) {
39
// position should be 0, see bug #26794
40
$item = $mb->topLinkItem($this->
getId
())
41
->addComponentDecorator(
static
function
(
ILIAS
\
UI
\
Component
\
Component
$c
) :
ILIAS
\
UI
\
Component
\
Component
{
42
if
($c instanceof
BulkyButton
|| $c instanceof BulkyLink) {
43
return
$c->withAdditionalOnLoadCode(
static
function
(
string
$id) :
string
{
44
return
"$('#$id').on('click', function() {
45
$('body').trigger('il-help-toggle-slate');
46
return false;
47
})"
;
48
});
49
}
50
return
$c
;
51
})
52
// ->withAction($this->dic->ctrl()->getLinkTargetByClass(ilDashboardGUI::class, "toggleHelp"))
53
->
withSymbol
(
$f
->symbol()->glyph()->help())
54
->withTitle($title)
55
->withPosition(0);
56
57
return
[$item];
58
}
59
60
return
[];
61
}
62
}
UI
Class Factory.
$c
$c
Definition:
cli.php:37
ILIAS\GlobalScreen\Provider\AbstractProvider\globalScreen
globalScreen()
Definition:
AbstractProvider.php:51
ILIAS
Class ChatMainBarProvider .
ILIAS\GlobalScreen\Identification\IdentificationInterface
Interface IdentificationInterface.
Definition:
IdentificationInterface.php:29
ilHelpMetaBarProvider
Help meta bar provider.
Definition:
class.ilHelpMetaBarProvider.php:13
ILIAS\UI\Component
ILIAS\GlobalScreen\Scope\MetaBar\Provider\StaticMetaBarProvider
Class StaticMetaBarProvider.
Definition:
StaticMetaBarProvider.php:29
ILIAS\UI\Implementation\Component\Link\Bulky
Definition:
Bulky.php:12
StaticMetaBarProvider
AbstractStaticMetaBarProvider
ilHelpDisplayed
ILIAS\GlobalScreen\Scope\MetaBar\Provider\AbstractStaticMetaBarProvider
Interface AbstractStaticMetaBarProvider.
Definition:
AbstractStaticMetaBarProvider.php:31
IdentificationInterface
ilHelpMetaBarProvider\getId
getId()
Definition:
class.ilHelpMetaBarProvider.php:20
Vendor\Package\$f
$f
Definition:
example_cleaned.php:31
ILIAS\GlobalScreen\Scope\MainMenu\Factory\withSymbol
withSymbol(Symbol $symbol)
Definition:
hasSymbolTrait.php:41
$DIC
global $DIC
Definition:
goto.php:24
Bulky
ilHelpMetaBarProvider\getMetaBarItems
getMetaBarItems()
Definition:
class.ilHelpMetaBarProvider.php:28
Bulky
Services
Help
GlobalScreen
classes
class.ilHelpMetaBarProvider.php
Generated on Thu Apr 3 2025 21:01:22 for ILIAS by
1.8.13 (using
Doxyfile
)