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
Separator.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
namespace
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item
;
21
22
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\AbstractChildItem
;
23
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
;
24
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isChild
;
25
30
class
Separator
extends
AbstractChildItem
implements
hasTitle
,
isChild
31
{
35
protected
$visible_title
=
false
;
39
protected
$title
=
''
;
40
45
public
function
withTitle
(
string
$title
) :
hasTitle
46
{
47
$clone = clone($this);
48
$clone->title =
$title
;
49
50
return
$clone;
51
}
52
56
public
function
getTitle
() : string
57
{
58
return
$this->title
;
59
}
60
61
public
function
withVisibleTitle
(
bool
$visible_title
) : self
62
{
63
$clone = clone($this);
64
$clone->visible_title =
$visible_title
;
65
66
return
$clone;
67
}
68
72
public
function
isTitleVisible
() : bool
73
{
74
return
$this->visible_title
;
75
}
76
}
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item
Definition:
Complex.php:21
isChild
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isChild
Interface isChild.
Definition:
isChild.php:28
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
Interface hasTitle.
Definition:
hasTitle.php:26
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Separator\$title
$title
Definition:
Separator.php:39
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Separator\$visible_title
$visible_title
Definition:
Separator.php:35
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Separator\isTitleVisible
isTitleVisible()
Definition:
Separator.php:72
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Separator\withTitle
withTitle(string $title)
Definition:
Separator.php:45
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Separator\getTitle
getTitle()
Definition:
Separator.php:56
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Separator\withVisibleTitle
withVisibleTitle(bool $visible_title)
Definition:
Separator.php:61
hasTitle
AbstractChildItem
ILIAS\GlobalScreen\Scope\MainMenu\Factory\AbstractChildItem
Class AbstractBaseItem.
Definition:
AbstractChildItem.php:29
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Separator
Class Separator.
Definition:
Separator.php:30
src
GlobalScreen
Scope
MainMenu
Factory
Item
Separator.php
Generated on Sat Apr 5 2025 21:01:45 for ILIAS by
1.8.13 (using
Doxyfile
)