ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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
Tool.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
namespace
ILIAS\GlobalScreen\Scope\Tool\Factory
;
21
22
use
Closure
;
23
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasContent
;
24
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
;
25
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
;
26
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isTopItem
;
27
use
ILIAS\UI\Component\Component
;
28
use
ILIAS\UI\Component\Symbol\Glyph
;
29
use
ILIAS\UI\Component\Symbol\Icon
;
30
use
ILIAS\UI\Component\Symbol\Symbol
;
31
use
LogicException
;
32
37
class
Tool
extends
AbstractBaseTool
implements
isTopItem
,
hasContent
,
supportsTerminating
38
{
42
protected
$title
;
46
protected
$terminated_callback
;
50
protected
$symbol
;
54
protected
$content
;
58
protected
$content_wrapper
;
62
protected
$close_callback
;
63
68
public
function
withTitle
(
string
$title
) :
hasTitle
69
{
70
$clone = clone($this);
71
$clone->title =
$title
;
72
73
return
$clone;
74
}
75
79
public
function
getTitle
() : string
80
{
81
return
$this->title
;
82
}
83
87
public
function
withContentWrapper
(
Closure
$content_wrapper
) :
hasContent
88
{
89
$clone = clone($this);
90
$clone->content_wrapper =
$content_wrapper
;
91
92
return
$clone;
93
}
94
98
public
function
withContent
(
Component
$ui_component) :
hasContent
99
{
100
$clone = clone($this);
101
$clone->content = $ui_component;
102
103
return
$clone;
104
}
105
109
public
function
getContent
() :
Component
110
{
111
if
($this->content_wrapper !== null) {
112
$wrapper =
$this->content_wrapper
;
113
114
return
$wrapper();
115
}
116
117
return
$this->content
;
118
}
119
123
public
function
withSymbol
(
Symbol
$symbol
) :
hasSymbol
124
{
125
// bugfix mantis 25526: make aria labels mandatory
126
if
(($symbol instanceof
Glyph
\
Glyph
&& $symbol->getAriaLabel() ===
""
) ||
127
($symbol instanceof
Icon
\
Icon
&& $symbol->getLabel() ===
""
)) {
128
throw
new
LogicException
(
"the symbol's aria label MUST be set to ensure accessibility"
);
129
}
130
131
$clone = clone($this);
132
$clone->symbol =
$symbol
;
133
134
return
$clone;
135
}
136
140
public
function
getSymbol
() :
Symbol
141
{
142
return
$this->symbol
;
143
}
144
148
public
function
hasSymbol
() : bool
149
{
150
return
($this->symbol instanceof
Symbol
);
151
}
152
156
public
function
withTerminatedCallback
(
Closure
$callback) :
supportsTerminating
157
{
158
$clone = clone $this;
159
$clone->terminated_callback = $callback;
160
161
return
$clone;
162
}
163
167
public
function
getTerminatedCallback
() : ?
Closure
168
{
169
return
$this->terminated_callback
;
170
}
171
175
public
function
hasTerminatedCallback
() : bool
176
{
177
return
$this->terminated_callback instanceof
Closure
;
178
}
179
}
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\$terminated_callback
$terminated_callback
Definition:
Tool.php:46
LogicException
ILIAS\UI\Component\Symbol\Symbol
This describes a symbol.
Definition:
Symbol.php:11
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\getTitle
getTitle()
Definition:
Tool.php:79
isTopItem
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\getTerminatedCallback
getTerminatedCallback()
Definition:
Tool.php:167
ILIAS\UI\Component\Symbol\Icon\Icon
This describes how an icon could be modified during construction of UI.
Definition:
Icon.php:9
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\$symbol
$symbol
Definition:
Tool.php:50
ILIAS\UI\Component
Component
Closure
Symbol
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isTopItem
Interface TopIs.
Definition:
isTopItem.php:26
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
Interface hasTitle.
Definition:
hasTitle.php:26
ILIAS\UI\Component\Symbol\Glyph\Glyph
This describes how a glyph could be modified during construction of UI.
Definition:
Glyph.php:13
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\getSymbol
getSymbol()
Definition:
Tool.php:140
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
hasSymbol()
Definition:
hasSymbolTrait.php:66
ILIAS\GlobalScreen\Scope\Tool\Factory\supportsTerminating
Class supportsTerminating.
Definition:
supportsTerminating.php:28
ILIAS\UI\Component\Symbol\Glyph
Definition:
Factory.php:6
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\$content_wrapper
$content_wrapper
Definition:
Tool.php:58
ILIAS\UI\Component\Symbol\Icon
Definition:
Custom.php:4
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\$title
$title
Definition:
Tool.php:42
ILIAS\GlobalScreen\Scope\Tool\Factory
Definition:
AbstractBaseTool.php:21
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
Interface hasSymbol Methods for Entries with Symbols.
Definition:
hasSymbol.php:32
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\withTerminatedCallback
withTerminatedCallback(Closure $callback)
Definition:
Tool.php:156
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\hasSymbol
hasSymbol()
Definition:
Tool.php:148
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\getContent
getContent()
Definition:
Tool.php:109
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasContent
Interface hasContent.
Definition:
hasContent.php:29
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool
Class Tool.
Definition:
Tool.php:37
hasContent
ILIAS\GlobalScreen\Scope\Tool\Factory\AbstractBaseTool
Class AbstractBaseTool.
Definition:
AbstractBaseTool.php:31
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\withSymbol
withSymbol(Symbol $symbol)
Definition:
Tool.php:123
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\$content
$content
Definition:
Tool.php:54
hasTitle
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\withContentWrapper
withContentWrapper(Closure $content_wrapper)
Definition:
Tool.php:87
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\withContent
withContent(Component $ui_component)
Definition:
Tool.php:98
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\hasTerminatedCallback
hasTerminatedCallback()
Definition:
Tool.php:175
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\withTitle
withTitle(string $title)
Definition:
Tool.php:68
ILIAS\GlobalScreen\Scope\Tool\Factory\Tool\$close_callback
$close_callback
Definition:
Tool.php:62
src
GlobalScreen
Scope
Tool
Factory
Tool.php
Generated on Thu Apr 3 2025 21:01:36 for ILIAS by
1.8.13 (using
Doxyfile
)