ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilHelpViewLayoutProvider.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\GlobalScreen\Scope\Layout\Factory\MainBarModification
;
20
use
ILIAS\GlobalScreen\Scope\Layout\Provider\AbstractModificationProvider
;
21
use
ILIAS\GlobalScreen\Scope\Layout\Provider\ModificationProvider
;
22
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
;
23
use
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
;
24
use
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
;
25
use
ILIAS\UI\Component\JavaScriptBindable
;
26
use
ILIAS\UI\Component\Symbol\Symbol
;
27
use
ILIAS\GlobalScreen\Scope\MainMenu\Collector\Renderer\Hasher
;
28
33
class
ilHelpViewLayoutProvider
extends
AbstractModificationProvider
34
{
35
use
Hasher
;
36
use
ilHelpDisplayed
;
37
38
public
function
isInterestedInContexts
():
ContextCollection
39
{
40
return
$this->context_collection->
main
();
41
}
42
46
public
function
getMainBarModification
(
47
CalledContexts
$screen_context_stack
48
): ?
MainBarModification
{
49
if
(!$this->showHelpTool()) {
50
return
null;
51
}
52
$this->
globalScreen
()->collector()->mainmenu()->collectOnce();
53
foreach
($this->
globalScreen
()->collector()->mainmenu()->getRawItems() as $item) {
54
$p = $item->getProviderIdentification();
55
56
$tt_text =
ilHelp::getMainMenuTooltip
($p->getInternalIdentifier());
57
$tt_text = addslashes(str_replace(array(
"\n"
,
"\r"
),
''
, $tt_text));
58
59
if
($tt_text !==
""
&& $item instanceof
hasSymbol
&& $item->
hasSymbol
()) {
60
$item->addSymbolDecorator(
static
function
(
Symbol
$symbol) use ($tt_text):
Symbol
{
61
return
$symbol->
withAdditionalOnLoadCode
(
static
function
(
$id
) use ($tt_text):
string
{
62
return
"il.Tooltip.addToNearest('$id', 'button,a', { context:'', my:'bottom center', at:'top center', text:'$tt_text' });"
;
63
});
64
});
65
}
66
}
67
68
ilTooltipGUI::init
();
69
70
return
null;
71
}
72
}
ILIAS\GlobalScreen\Scope\Layout\Factory\MainBarModification
Class MainBar.
Definition:
MainBarModification.php:28
ILIAS\UI\Component\Symbol\Symbol
This describes a symbol.
Definition:
Symbol.php:29
ILIAS\GlobalScreen\Provider\AbstractProvider\globalScreen
globalScreen()
Definition:
AbstractProvider.php:45
ilTooltipGUI\init
static init()
Initializes the needed tooltip libraries.
Definition:
class.ilTooltipGUI.php:89
ilHelpViewLayoutProvider\getMainBarModification
getMainBarModification(CalledContexts $screen_context_stack)
No main bar in HTML exports.
Definition:
class.ilHelpViewLayoutProvider.php:46
ILIAS\UI\Implementation\Component\JavaScriptBindable
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
Definition:
JavaScriptBindable.php:32
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\main
main()
Definition:
ContextCollection.php:102
Symbol
Hasher
ilHelpDisplayed
ModificationProvider
ILIAS\GlobalScreen\Scope\Layout\Provider\AbstractModificationProvider
Class AbstractModificationProvider.
Definition:
AbstractModificationProvider.php:43
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
hasSymbol()
Definition:
hasSymbolTrait.php:63
CalledContexts
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol\hasSymbol
hasSymbol()
MainBarModification
ilHelpViewLayoutProvider\isInterestedInContexts
isInterestedInContexts()
Definition:
class.ilHelpViewLayoutProvider.php:38
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
Interface hasSymbol Methods for Entries with Symbols.
Definition:
hasSymbol.php:32
AbstractModificationProvider
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ContextCollection
Hasher
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
Class CalledContexts.
Definition:
CalledContexts.php:31
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
Definition:
ContextCollection.php:29
ilHelpViewLayoutProvider
HTML export view layout provider, hides main and meta bar.
Definition:
class.ilHelpViewLayoutProvider.php:33
$id
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition:
plugin.php:23
ILIAS\UI\Component\JavaScriptBindable\withAdditionalOnLoadCode
withAdditionalOnLoadCode(Closure $binder)
Add some onload-code to the component instead of replacing the existing one.
ilHelp\getMainMenuTooltip
static getMainMenuTooltip(string $a_item_id)
Definition:
class.ilHelp.php:104
Services
Help
GlobalScreen
classes
class.ilHelpViewLayoutProvider.php
Generated on Thu Apr 3 2025 22:02:21 for ILIAS by
1.8.13 (using
Doxyfile
)