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
TreeTool.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
3
namespace
ILIAS\GlobalScreen\Scope\Tool\Factory
;
4
5
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
;
6
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
;
7
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isTopItem
;
8
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\SymbolDecoratorTrait
;
9
use
ILIAS\UI\Component\Symbol\Glyph
;
10
use
ILIAS\UI\Component\Symbol\Icon
;
11
use
ILIAS\UI\Component\Symbol\Symbol
;
12
use
ILIAS\UI\Component\Tree\Tree
;
13
18
class
TreeTool
extends
AbstractBaseTool
implements
isTopItem
,
hasSymbol
,
isToolItem
19
{
20
use
SymbolDecoratorTrait
;
24
protected
$symbol
;
28
protected
$tree
;
32
protected
$title
;
33
38
public
function
withTitle
(
string
$title
) :
hasTitle
39
{
40
$clone = clone($this);
41
$clone->title =
$title
;
42
43
return
$clone;
44
}
45
49
public
function
getTitle
() : string
50
{
51
return
$this->title
;
52
}
53
57
public
function
withSymbol
(
Symbol
$symbol
) :
hasSymbol
58
{
59
// bugfix mantis 25526: make aria labels mandatory
60
if
(($symbol instanceof
Icon
\
Icon
|| $symbol instanceof
Glyph
\
Glyph
)
61
&& ($symbol->getAriaLabel() ===
""
)
62
) {
63
throw
new \LogicException(
"the symbol's aria label MUST be set to ensure accessibility"
);
64
}
65
66
$clone = clone($this);
67
$clone->symbol =
$symbol
;
68
69
return
$clone;
70
}
71
75
public
function
withTree
(
Tree
$tree
) :
TreeTool
76
{
77
$clone = clone($this);
78
$clone->tree =
$tree
;
79
80
return
$clone;
81
}
82
86
public
function
getTree
() :
Tree
87
{
88
return
$this->tree
;
89
}
90
94
public
function
getSymbol
() :
Symbol
95
{
96
return
$this->symbol
;
97
}
98
102
public
function
hasSymbol
() : bool
103
{
104
return
($this->symbol instanceof
Symbol
);
105
}
106
}
ILIAS\GlobalScreen\Scope\Tool\Factory\isToolItem
Interface isToolItem.
Definition:
isToolItem.php:15
ILIAS\UI\Component\Symbol\Symbol
This describes a symbol.
Definition:
Symbol.php:11
Tree
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\withTitle
withTitle(string $title)
Definition:
TreeTool.php:38
isTopItem
ILIAS\UI\Component\Symbol\Icon\Icon
This describes how a icon could be modified during construction of UI.
Definition:
Icon.php:9
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\withSymbol
withSymbol(Symbol $symbol)
Definition:
TreeTool.php:57
Symbol
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool
Class TreeTool.
Definition:
TreeTool.php:18
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\getSymbol
getSymbol()
Definition:
TreeTool.php:94
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\$symbol
$symbol
Definition:
TreeTool.php:24
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\hasSymbol
hasSymbol()
Definition:
TreeTool.php:102
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isTopItem
Interface TopIs.
Definition:
isTopItem.php:8
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
Interface hasTitle.
Definition:
hasTitle.php:8
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\MainMenu\Factory\hasSymbol
hasSymbol()
Definition:
hasSymbolTrait.php:44
ILIAS\UI\Component\Symbol\Glyph
Definition:
Factory.php:6
ILIAS\UI\Component\Symbol\Icon
Definition:
Custom.php:4
ILIAS\GlobalScreen\Scope\Tool\Factory
Definition:
AbstractBaseTool.php:3
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
Interface hasSymbol Methods for Entries with Symbols.
Definition:
hasSymbol.php:11
ILIAS\UI\Component\Tree\Tree
This describes a Tree Control.
Definition:
Tree.php:13
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\$tree
$tree
Definition:
TreeTool.php:28
ILIAS\GlobalScreen\Scope\Tool\Factory\AbstractBaseTool
Class AbstractBaseTool.
Definition:
AbstractBaseTool.php:13
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\$title
$title
Definition:
TreeTool.php:32
hasTitle
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\getTree
getTree()
Definition:
TreeTool.php:86
ILIAS\GlobalScreen\Scope\MainMenu\Factory\SymbolDecoratorTrait
trait SymbolDecoratorTrait
Definition:
SymbolDecoratorTrait.php:18
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\getTitle
getTitle()
Definition:
TreeTool.php:49
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\withTree
withTree(Tree $tree)
Definition:
TreeTool.php:75
src
GlobalScreen
Scope
Tool
Factory
TreeTool.php
Generated on Thu Apr 3 2025 20:01:21 for ILIAS by
1.8.13 (using
Doxyfile
)