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
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
35
class
TreeTool
extends
AbstractBaseTool
implements
isTopItem
,
hasSymbol
,
isToolItem
36
{
37
protected
?
Symbol
$symbol
=
null
;
38
protected
Tree
$tree
;
39
protected
string
$title
;
40
41
public
function
withTitle
(
string
$title):
hasTitle
42
{
43
$clone = clone($this);
44
$clone->title =
$title
;
45
46
return
$clone;
47
}
48
49
public
function
getTitle
(): string
50
{
51
return
$this->title
;
52
}
53
54
public
function
withSymbol
(
Symbol
$symbol):
hasSymbol
55
{
56
// bugfix mantis 25526: make aria labels mandatory
57
if
(($symbol instanceof
Glyph
\
Glyph
&& $symbol->getAriaLabel() ===
""
) ||
58
($symbol instanceof
Icon
\
Icon
&& $symbol->
getLabel
() ===
""
)) {
59
throw
new
LogicException
(
"the symbol's aria label MUST be set to ensure accessibility"
);
60
}
61
62
$clone = clone($this);
63
$clone->symbol =
$symbol
;
64
65
return
$clone;
66
}
67
68
public
function
withTree
(
Tree
$tree): self
69
{
70
$clone = clone($this);
71
$clone->tree =
$tree
;
72
73
return
$clone;
74
}
75
76
public
function
getTree
():
Tree
77
{
78
return
$this->tree
;
79
}
80
81
public
function
getSymbol
():
Symbol
82
{
83
return
$this->symbol
;
84
}
85
86
public
function
hasSymbol
(): bool
87
{
88
return
($this->
symbol
instanceof
Symbol
);
89
}
90
}
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:41
Standard
isTopItem
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\$symbol
Symbol $symbol
Definition:
TreeTool.php:37
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\withSymbol
withSymbol(Symbol $symbol)
Definition:
TreeTool.php:54
Symbol
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool
Definition:
TreeTool.php:35
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\getSymbol
getSymbol()
Definition:
TreeTool.php:81
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\$tree
Tree $tree
Definition:
TreeTool.php:38
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\hasSymbol
hasSymbol()
Definition:
TreeTool.php:86
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isTopItem
Interface TopIs.
Definition:
isTopItem.php:26
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
Interface hasTitle.
Definition:
hasTitle.php:26
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\UI\Component\Symbol\Glyph\Glyph
Definition:
Glyph.php:28
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
hasSymbol()
Definition:
hasSymbolTrait.php:63
ILIAS\UI\Component\Symbol\Glyph
Definition:
Factory.php:21
ILIAS\UI\Component\Symbol\Icon
Definition:
Custom.php:21
ILIAS\GlobalScreen\Scope\Tool\Factory
Definition:
AbstractBaseTool.php:21
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
Definition:
hasSymbol.php:30
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\$title
string $title
Definition:
TreeTool.php:39
ILIAS\Repository\symbol
symbol()
Definition:
trait.GlobalDICGUIServices.php:209
ILIAS\UI\Component\Tree\Tree
This describes a Tree Control.
Definition:
Tree.php:28
ILIAS\GlobalScreen\Scope\Tool\Factory\AbstractBaseTool
Definition:
AbstractBaseTool.php:29
hasTitle
ILIAS\GlobalScreen\Scope\Tool\Factory\TreeTool\getTree
getTree()
Definition:
TreeTool.php:76
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:68
components
ILIAS
GlobalScreen
src
Scope
Tool
Factory
TreeTool.php
Generated on Wed Apr 2 2025 23:02:56 for ILIAS by
1.8.13 (using
Doxyfile
)