ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
;
7
12
class
ilHelpMetaBarProvider
extends
AbstractStaticMetaBarProvider
implements
StaticMetaBarProvider
13
{
14
use
ilHelpDisplayed
;
15
19
private
function
getId
() :
IdentificationInterface
20
{
21
return
$this->
if
->identifier(
'help'
);
22
}
23
27
public
function
getMetaBarItems
() : array
28
{
29
global
$DIC
;
30
31
$mb = $this->
globalScreen
()->metaBar();
32
33
$f
= $DIC->ui()->factory();
34
35
$title = $DIC->language()->txt(
"help"
);
36
37
if
($this->showHelpTool()) {
38
// position should be 0, see bug #26794
39
$item = $mb->topLinkItem($this->
getId
())
40
->addComponentDecorator(
static
function
(
ILIAS
\
UI
\
Component
\
Component
$c
) :
ILIAS
\
UI
\
Component
\
Component
{
41
if
($c instanceof
Bulky
) {
42
return
$c->withAdditionalOnLoadCode(
static
function
(
string
$id) :
string
{
43
return
"$('#$id').on('click', function() {
44
console.log('trigger help slate');
45
$('body').trigger('il-help-toggle-slate');
46
})"
;
47
});
48
}
49
})
50
// ->withAction($this->dic->ctrl()->getLinkTargetByClass(ilDashboardGUI::class, "toggleHelp"))
51
->
withSymbol
(
$f
->symbol()->glyph()->help())
52
->withTitle($title)
53
->withPosition(0);
54
55
return
[$item];
56
}
57
58
return
[];
59
}
60
}
UI
Class Factory.
ILIAS\GlobalScreen\Provider\AbstractProvider\globalScreen
globalScreen()
Definition:
AbstractProvider.php:36
ILIAS
Class ChatMainBarProvider .
ILIAS\GlobalScreen\Identification\IdentificationInterface
Interface IdentificationInterface.
Definition:
IdentificationInterface.php:8
ILIAS\UI\Implementation\Component\Button\Bulky
Bulky Button.
Definition:
Bulky.php:14
ilHelpMetaBarProvider
Help meta bar provider.
Definition:
class.ilHelpMetaBarProvider.php:12
ILIAS\UI\Component
ILIAS\GlobalScreen\Scope\MetaBar\Provider\StaticMetaBarProvider
Class StaticMetaBarProvider.
Definition:
StaticMetaBarProvider.php:11
StaticMetaBarProvider
AbstractStaticMetaBarProvider
ilHelpDisplayed
ILIAS\GlobalScreen\Scope\MetaBar\Provider\AbstractStaticMetaBarProvider
Interface AbstractStaticMetaBarProvider.
Definition:
AbstractStaticMetaBarProvider.php:13
IdentificationInterface
ilHelpMetaBarProvider\getId
getId()
Definition:
class.ilHelpMetaBarProvider.php:19
Vendor\Package\$f
$f
Definition:
example_cleaned.php:31
ILIAS\GlobalScreen\Scope\MainMenu\Factory\withSymbol
withSymbol(Symbol $symbol)
Definition:
hasSymbolTrait.php:19
ilHelpMetaBarProvider\getMetaBarItems
getMetaBarItems()
Definition:
class.ilHelpMetaBarProvider.php:27
$DIC
$DIC
Definition:
xapitoken.php:46
Vendor\Package\$c
$c
Definition:
example_cleaned.php:31
Bulky
Services
Help
GlobalScreen
classes
class.ilHelpMetaBarProvider.php
Generated on Thu Apr 3 2025 20:01:07 for ILIAS by
1.8.13 (using
Doxyfile
)