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
TreeTool.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\GlobalScreen\Scope\Tool\Factory
;
22
23
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
;
24
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
;
25
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isTopItem
;
26
use
ILIAS\UI\Component\Symbol\Glyph
;
27
use
ILIAS\UI\Component\Symbol\Icon
;
28
use
ILIAS\UI\Component\Symbol\Symbol
;
29
use
ILIAS\UI\Component\Tree\Tree
;
30
use
LogicException
;
31
36
class
TreeTool
extends
AbstractBaseTool
implements
isTopItem
,
hasSymbol
,
isToolItem
37
{
38
use \ILIAS\GlobalScreen\Scope\SymbolDecoratorTrait
;
39
40
protected
?
Symbol
$symbol
= null;
41
protected
Tree
$tree
;
42
protected
string
$title
;
43
48
public
function
withTitle
(
string
$title):
hasTitle
49
{
50
$clone = clone($this);
51
$clone->title =
$title
;
52
53
return
$clone;
54
}
55
59
public
function
getTitle
(): string
60
{
61
return
$this->title
;
62
}
63
67
public
function
withSymbol
(
Symbol
$symbol):
hasSymbol
68
{
69
// bugfix mantis 25526: make aria labels mandatory
70
if
(($symbol instanceof
Glyph
\
Glyph
&& $symbol->getAriaLabel() ===
""
) ||
71
($symbol instanceof
Icon
\
Icon
&& $symbol->
getLabel
() ===
""
)) {
72
throw
new
LogicException
(
"the symbol's aria label MUST be set to ensure accessibility"
);
73
}
74
75
$clone = clone($this);
76
$clone->symbol =
$symbol
;
77
78
return
$clone;
79
}
80
84
public
function
withTree
(
Tree
$tree): self
85
{
86
$clone = clone($this);
87
$clone->tree =
$tree
;
88
89
return
$clone;
90
}
91
95
public
function
getTree
():
Tree
96
{
97
return
$this->tree
;
98
}
99
103
public
function
getSymbol
():
Symbol
104
{
105
return
$this->symbol
;
106
}
107
111
public
function
hasSymbol
(): bool
112
{
113
return
($this->symbol instanceof
Symbol
);
114
}
115
}
LogicException
ILIAS\GlobalScreen\Scope\Tool\Factory\isToolItem
Interface isToolItem.
Definition:
isToolItem.php:31
ILIAS\UI\Component\Symbol\Symbol\getLabel
getLabel()
Get the label of this icon.
ILIAS\UI\Component\Symbol\Symbol
This describes a symbol.
Definition:
Symbol.php:29
Tree
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\withTitle
withTitle(string $title)
Definition:
TreeTool.php:48
isTopItem
ILIAS\GlobalScreen\Scope\SymbolDecoratorTrait
trait SymbolDecoratorTrait
Definition:
SymbolDecoratorTrait.php:38
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\$symbol
Symbol $symbol
Definition:
TreeTool.php:40
ILIAS\UI\Component\Symbol\Icon\Icon
This describes how an icon could be modified during construction of UI.
Definition:
Icon.php:28
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\withSymbol
withSymbol(Symbol $symbol)
Definition:
TreeTool.php:67
Symbol
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool
Class TreeTool.
Definition:
TreeTool.php:36
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\getSymbol
getSymbol()
Definition:
TreeTool.php:103
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\$tree
Tree $tree
Definition:
TreeTool.php:41
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\hasSymbol
hasSymbol()
Definition:
TreeTool.php:111
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:30
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
hasSymbol()
Definition:
hasSymbolTrait.php:63
ILIAS\UI\Component\Symbol\Glyph
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Factory.php:21
ILIAS\UI\Component\Symbol\Icon
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Custom.php:21
ILIAS\GlobalScreen\Scope\Tool\Factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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\TreeTool\$title
string $title
Definition:
TreeTool.php:42
ILIAS\UI\Component\Tree\Tree
This describes a Tree Control.
Definition:
Tree.php:28
ILIAS\GlobalScreen\Scope\Tool\Factory\AbstractBaseTool
Class AbstractBaseTool.
Definition:
AbstractBaseTool.php:31
hasTitle
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\getTree
getTree()
Definition:
TreeTool.php:95
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\getTitle
getTitle()
Definition:
TreeTool.php:59
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\withTree
withTree(Tree $tree)
Definition:
TreeTool.php:84
src
GlobalScreen
Scope
Tool
Factory
TreeTool.php
Generated on Fri Apr 4 2025 22:03:12 for ILIAS by
1.8.13 (using
Doxyfile
)