ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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
▼
ILIAS
Test List
Todo List
Deprecated List
►
Modules
►
Namespaces
►
Data Structures
▼
Files
►
File List
►
Globals
►
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
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
use
ILIAS\GlobalScreen\Scope\isDecorateable
;
29
34
class
ilHelpViewLayoutProvider
extends
AbstractModificationProvider
35
{
36
use
Hasher
;
37
use
ilHelpDisplayed
;
38
39
public
function
isInterestedInContexts
():
ContextCollection
40
{
41
return
$this->context_collection->
main
();
42
}
43
47
public
function
getMainBarModification
(
48
CalledContexts
$screen_context_stack
49
): ?
MainBarModification
{
50
global
$DIC
;
51
52
if
(!$this->showHelpTool()) {
53
return
null
;
54
}
55
56
$f
= $DIC->ui()->factory();
57
$ttm = $DIC->help()->internal()->domain()->tooltips();
58
59
$this->
globalScreen
()->collector()->mainmenu()->collectOnce();
60
foreach
($this->
globalScreen
()->collector()->mainmenu()->getRawItems() as $item) {
61
if
($item instanceof
isDecorateable
) {
62
$p = $item->getProviderIdentification();
63
64
$tt_text = $ttm->getMainMenuTooltip($p->getInternalIdentifier());
65
$tt_text = addslashes(str_replace(array(
"\n"
,
"\r"
),
''
, $tt_text));
66
if
($tt_text !==
""
) {
67
//$item->withTopics($DIC->ui()->factory()->helpTopics($p->getInternalIdentifier()));
68
$item->withTopics(...$DIC->ui()->factory()->helpTopics($tt_text));
69
}
70
}
71
72
if
($tt_text !==
""
&& $item instanceof
hasSymbol
&& $item->
hasSymbol
()) {
73
$item->addSymbolDecorator(
static
function
(
Symbol
$symbol) use ($tt_text,
$f
):
Symbol
{
74
/* This does not work for multiple reasons, first, symbols do no
75
accept help topics. Even if they would, it would be the wrong ui element to attach
76
a help tooltip, since the symbol may be smaller than the parent button or link
77
we need a $item->hasLink() and $item->hasButton() and Link and Button decorators instead
78
return $symbol->withHelpTopics(
79
...$f->helpTopics($tt_text)
80
);*/
81
return
$symbol->
withAdditionalOnLoadCode
(
static
function
(
$id
) use ($tt_text):
string
{
82
return
"il.Tooltip.addToNearest('$id', 'button,a', { context:'', my:'bottom center', at:'top center', text:'$tt_text' });"
;
83
});
84
});
85
}
86
}
87
88
return
null
;
89
}
90
}
ILIAS\GlobalScreen\Scope\Layout\Factory\MainBarModification
Class MainBar.
Definition:
MainBarModification.php:29
ILIAS\UI\Component\Symbol\Symbol
This describes a symbol.
Definition:
Symbol.php:29
ILIAS\GlobalScreen\Provider\AbstractProvider\globalScreen
globalScreen()
Definition:
AbstractProvider.php:38
ilHelpViewLayoutProvider\getMainBarModification
getMainBarModification(CalledContexts $screen_context_stack)
No main bar in HTML exports.
Definition:
class.ilHelpViewLayoutProvider.php:47
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:92
Symbol
Hasher
ilHelpDisplayed
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ModificationProvider
ILIAS\GlobalScreen\Scope\Layout\Provider\AbstractModificationProvider
Class AbstractModificationProvider.
Definition:
AbstractModificationProvider.php:45
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
hasSymbol()
Definition:
hasSymbolTrait.php:63
CalledContexts
Vendor\Package\$f
$f
Definition:
example_cleaned.php:49
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol\hasSymbol
hasSymbol()
$DIC
global $DIC
Definition:
shib_login.php:22
MainBarModification
ilHelpViewLayoutProvider\isInterestedInContexts
isInterestedInContexts()
Definition:
class.ilHelpViewLayoutProvider.php:39
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
Definition:
hasSymbol.php:30
AbstractModificationProvider
ContextCollection
Hasher
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isDecorateable
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
Definition:
CalledContexts.php:29
ILIAS\GlobalScreen\Scope\isDecorateable
Definition:
isDecorateable.php:29
$id
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition:
plugin.php:23
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
Definition:
ContextCollection.php:30
ilHelpViewLayoutProvider
HTML export view layout provider, hides main and meta bar.
Definition:
class.ilHelpViewLayoutProvider.php:34
ILIAS\UI\Component\JavaScriptBindable\withAdditionalOnLoadCode
withAdditionalOnLoadCode(Closure $binder)
Add some onload-code to the component instead of replacing the existing one.
components
ILIAS
Help
GlobalScreen
classes
class.ilHelpViewLayoutProvider.php
Generated on Thu Apr 3 2025 23:03:04 for ILIAS by
1.8.13 (using
Doxyfile
)