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.ilHelpGSToolProvider.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\GlobalScreen\Scope\MainMenu\Collector\Renderer\Hasher
;
20
use
ILIAS\GlobalScreen\Scope\Tool\Provider\AbstractDynamicToolProvider
;
21
use
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
;
22
use
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
;
23
use
ILIAS\UI\Component\JavaScriptBindable
;
24
use
ILIAS\UI\Implementation\Component\MainControls\Slate\Legacy
as LegacySlate;
25
30
class
ilHelpGSToolProvider
extends
AbstractDynamicToolProvider
31
{
32
use
ilHelpDisplayed
;
33
use
Hasher
;
34
35
public
const
SHOW_HELP_TOOL
=
'show_help_tool'
;
36
37
public
function
isInterestedInContexts
():
ContextCollection
38
{
39
return
$this->context_collection->
main
();
40
}
41
42
public
function
getToolsForContextStack
(
CalledContexts
$called_contexts): array
43
{
44
global
$DIC
;
45
47
$help_gui = $DIC[
"ilHelp"
];
48
49
$lng
= $DIC->language();
50
$lng
->loadLanguageModule(
"help"
);
51
$f
= $DIC->ui()->factory();
52
53
$tools = [];
54
55
$hidden = !$help_gui->isHelpPageActive();
56
57
$title =
$lng
->txt(
"help"
);
58
$icon =
$f
->symbol()->icon()->standard(
"hlps"
, $title);
59
60
if
($this->showHelpTool()) {
61
$iff =
function
(
$id
) {
62
return
$this->identification_provider->contextAwareIdentifier(
$id
,
true
);
63
};
64
$l =
function
(
string
$content) {
65
return
$this->dic->ui()->factory()->legacy()->content($content);
66
};
67
68
$identification = $iff(
"help"
);
69
$hashed = $this->
hash
($identification->serialize());
70
$tools[] = $this->
factory
->tool($identification)
71
->addComponentDecorator(
static
function
(
ILIAS
\
UI
\
Component
\
Component
$c
) use ($hashed, $hidden):
ILIAS
\
UI
\
Component
\
Component
{
72
if
($c instanceof LegacySlate) {
73
$signal_id = $c->getToggleSignal()->getId();
74
return
$c->withAdditionalOnLoadCode(
static
function
(
$id
) use ($hashed) {
75
return
"
76
$('body').on('il-help-toggle-slate', function(){
77
if (!$('#$id').hasClass('disengaged')) {
78
il.Help.resetCurrentPage();
79
il.UI.maincontrols.mainbar.removeTool('$hashed');
80
} else {
81
il.UI.maincontrols.mainbar.engageTool('$hashed');
82
const panel = document.getElementById('ilHelpPanel');
83
const firstFocusElement = panel.querySelector('a,input,[role=\'button\'],button');
84
if (firstFocusElement) {
85
firstFocusElement.focus();
86
}
87
}
88
});"
;
89
});
90
}
91
return
$c
;
92
})
93
->withInitiallyHidden($hidden)
94
->withTitle($title)
95
->withSymbol($icon)
96
->withContentWrapper(
function
() use ($l) {
97
return
$l($this->getHelpContent());
98
})
99
->withPosition(90);
100
}
101
102
return
$tools;
103
}
104
105
private
function
getHelpContent():
string
106
{
107
global
$DIC
;
108
109
$ctrl = $DIC->ctrl();
110
$main_tpl = $DIC->ui()->mainTemplate();
111
113
$help_gui = $DIC[
"ilHelp"
];
114
115
$help_gui->initHelp($main_tpl, $ctrl->getLinkTargetByClass(
"ilhelpgui"
,
""
,
""
,
true
));
116
117
$html =
""
;
118
if
((defined(
"OH_REF_ID"
) && (
int
) OH_REF_ID > 0) || (defined(
'DEVMODE'
) && (
int
) DEVMODE === 1)) {
119
$html =
"<div class='ilHighlighted small'>Screen ID: "
. $help_gui->getScreenId() .
"</div>"
;
120
}
121
122
$html .=
"<div id='ilHelpPanel'> </div>"
;
123
124
return
$html;
125
}
126
}
ilHelpGSToolProvider\SHOW_HELP_TOOL
const SHOW_HELP_TOOL
Definition:
class.ilHelpGSToolProvider.php:35
ilHelpGSToolProvider
Class ilHelpGSToolProvider.
Definition:
class.ilHelpGSToolProvider.php:30
ILIAS
Interface Observer Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
factory
factory()
Definition:
UITestHelper.php:61
Factory
ILIAS\UI\Component
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
$c
$c
Definition:
deliver.php:25
Hasher
ilHelpDisplayed
hash
ilHelpGSToolProvider\isInterestedInContexts
isInterestedInContexts()
Definition:
class.ilHelpGSToolProvider.php:37
CalledContexts
Vendor\Package\$f
$f
Definition:
example_cleaned.php:49
$DIC
global $DIC
Definition:
shib_login.php:22
ContextCollection
Hasher
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Legacy
ILIAS\GlobalScreen\ScreenContext\Stack\CalledContexts
Definition:
CalledContexts.php:29
AbstractDynamicToolProvider
ILIAS\GlobalScreen\Scope\Tool\Provider\DynamicToolProvider\getToolsForContextStack
getToolsForContextStack(CalledContexts $called_contexts)
$id
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition:
plugin.php:23
$lng
global $lng
Definition:
privfeed.php:31
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection
Definition:
ContextCollection.php:30
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\GlobalScreen\Scope\Tool\Provider\AbstractDynamicToolProvider
Class AbstractDynamicToolProvider.
Definition:
AbstractDynamicToolProvider.php:32
components
ILIAS
Help
GlobalScreen
classes
class.ilHelpGSToolProvider.php
Generated on Wed Apr 2 2025 23:02:59 for ILIAS by
1.8.13 (using
Doxyfile
)