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
SlateSessionStateCode.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\GlobalScreen\Scope\MainMenu\Collector\Renderer
;
4
5
use
ILIAS\GlobalScreen\Client\ItemState
;
6
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isItem
;
7
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isTopItem
;
8
use
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool
;
9
use
ILIAS\UI\Implementation\Component\MainControls\Slate\Slate
;
10
16
trait
SlateSessionStateCode
17
{
18
use
Hasher
;
19
20
26
public
function
addOnloadCode(
Slate
$slate,
isItem
$item) :
Slate
27
{
28
return
$slate;
29
if
($item instanceof
Tool
) {
30
$signal = $slate->
getEngageSignal
();
31
}
else
{
32
$signal = $slate->
getToggleSignal
();
33
}
34
35
$signal_generator = new \ILIAS\UI\Implementation\Component\SignalGenerator();
36
$in_view_signal = $signal_generator->create();
37
38
$slate = $slate->
appendOnInView
($in_view_signal);
39
40
$identification = $item->
getProviderIdentification
()->serialize();
41
$item_state =
new
ItemState
($item->
getProviderIdentification
());
42
43
// if ($item_state->isItemActive()) {
44
// $slate = $slate->withEngaged(true);
45
// }
46
47
$level = $this->
getLevel
($item);
48
49
$slate = $slate->
withAdditionalOnLoadCode
(
50
function
($id) use ($in_view_signal, $identification, $level) {
51
$identification = addslashes($identification);
52
53
return
"
54
il.GS.Client.register(il.GS.Identification.getFromServerSideString('{$identification}'), '{$id}', {$level});
55
$(document).on('{$in_view_signal}', function(event, signalData) {
56
console.log('SlateSessionStateCode');
57
});
58
$(document).on('{$in_view_signal}', function(event, signalData) {
59
il.GS.Client.trigger('$id');
60
});"
;
61
}
62
);
63
65
return
$slate;
66
}
67
68
74
private
function
getLevel
(
isItem
$item) : int
75
{
76
switch
(
true
) {
77
case
($item instanceof
Tool
):
78
$level =
ItemState::LEVEL_OF_TOOL
;
79
break
;
80
case
($item instanceof
isTopItem
):
81
$level =
ItemState::LEVEL_OF_TOPITEM
;
82
break
;
83
default
:
84
$level =
ItemState::LEVEL_OF_SUBITEM
;
85
}
86
87
return
$level;
88
}
89
}
ILIAS\GlobalScreen\Client\ItemState\LEVEL_OF_TOPITEM
const LEVEL_OF_TOPITEM
Definition:
ItemState.php:17
isTopItem
Tool
ILIAS\GlobalScreen\Client\ItemState
Class ItemState.
Definition:
ItemState.php:13
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isItem
Interface IFactory.
Definition:
isItem.php:11
ILIAS\GlobalScreen\Client\ItemState\LEVEL_OF_SUBITEM
const LEVEL_OF_SUBITEM
Definition:
ItemState.php:18
ILIAS\UI\Component\MainControls\Slate\Slate
This describes a Slate.
Definition:
Slate.php:17
ILIAS\UI\Component\MainControls\Slate\Slate\getToggleSignal
getToggleSignal()
Signal that toggles the slate when triggered.
Hasher
ILIAS\GlobalScreen\Scope\MainMenu\Collector\Renderer
Definition:
BaseTypeRenderer.php:1
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isTopItem
Interface TopIs.
Definition:
isTopItem.php:8
ILIAS\GlobalScreen\Scope\isGlobalScreenItem\getProviderIdentification
getProviderIdentification()
ILIAS\GlobalScreen\Scope\MainMenu\Collector\Renderer\getLevel
getLevel(isItem $item)
Definition:
SlateSessionStateCode.php:74
SlateSessionStateCode
ILIAS\GlobalScreen\Client\ItemState\LEVEL_OF_TOOL
const LEVEL_OF_TOOL
Definition:
ItemState.php:16
ILIAS\UI\Component\JavaScriptBindable\withAdditionalOnLoadCode
withAdditionalOnLoadCode(\Closure $binder)
Add some onload-code to the component instead of replacing the existing one.
isItem
ILIAS\UI\Component\MainControls\Slate\Slate\appendOnInView
appendOnInView(Signal $signal)
A Signal that is triggered when the slate "comes into view", i.e.
Slate
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool
Class Tool.
Definition:
Tool.php:19
ItemState
ILIAS\UI\Component\MainControls\Slate\Slate\getEngageSignal
getEngageSignal()
Signal that engages the slate when triggered.
src
GlobalScreen
Scope
MainMenu
Collector
Renderer
SlateSessionStateCode.php
Generated on Wed Apr 2 2025 20:01:27 for ILIAS by
1.8.13 (using
Doxyfile
)