ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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
Complex.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item
;
22
23
use
Closure
;
24
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\AbstractChildItem
;
25
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasContent
;
26
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
;
27
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbolTrait
;
28
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
;
29
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isChild
;
30
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isInterchangeableItem
;
31
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isInterchangeableItemTrait
;
32
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\supportsAsynchronousLoading
;
33
use
ILIAS\UI\Component\Component
;
34
38
class
Complex
extends
AbstractChildItem
implements
39
hasContent
,
40
hasTitle
,
41
hasSymbol
,
42
supportsAsynchronousLoading
,
43
isInterchangeableItem
,
44
isChild
45
{
46
use
hasSymbolTrait
;
47
use
isInterchangeableItemTrait
;
48
49
private
?
Closure
$content_wrapper
=
null
;
50
private
?
Component
$content
=
null
;
51
private
string
$title
=
''
;
52
private
bool
$supports_async_loading
=
false
;
53
57
public
function
withContentWrapper
(
Closure
$content_wrapper):
hasContent
58
{
59
$clone = clone($this);
60
$clone->content_wrapper =
$content_wrapper
;
61
62
return
$clone;
63
}
64
68
public
function
withContent
(
Component
$ui_component):
hasContent
69
{
70
$clone = clone($this);
71
$clone->content = $ui_component;
72
73
return
$clone;
74
}
75
79
public
function
getContent
():
Component
80
{
81
if
($this->content_wrapper !==
null
) {
82
$wrapper =
$this->content_wrapper
;
83
84
return
$wrapper();
85
}
86
87
return
$this->content
;
88
}
89
94
public
function
withTitle
(
string
$title):
hasTitle
95
{
96
$clone = clone($this);
97
$clone->title =
$title
;
98
99
return
$clone;
100
}
101
105
public
function
getTitle
(): string
106
{
107
return
$this->title
;
108
}
109
113
public
function
withSupportsAsynchronousLoading
(
bool
$supported):
supportsAsynchronousLoading
114
{
115
$clone = clone($this);
116
$clone->supports_async_loading = $supported;
117
118
return
$clone;
119
}
120
124
public
function
supportsAsynchronousLoading
(): bool
125
{
126
return
$this->supports_async_loading
;
127
}
128
}
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isInterchangeableItem
Definition:
isInterchangeableItem.php:27
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\getContent
getContent()
Definition:
Complex.php:79
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item
Definition:
Complex.php:21
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\$title
string $title
Definition:
Complex.php:51
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex
Definition:
Complex.php:38
isInterchangeableItemTrait
isInterchangeableItemTrait
ILIAS\UI\Component
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\withContent
withContent(Component $ui_component)
Definition:
Complex.php:68
Component
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Closure
isChild
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isChild
Interface isChild.
Definition:
isChild.php:28
supportsAsynchronousLoading
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\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
hasSymbol()
Definition:
hasSymbolTrait.php:63
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\withTitle
withTitle(string $title)
Definition:
Complex.php:94
ILIAS\GlobalScreen\Scope\MainMenu\Factory\supportsAsynchronousLoading
Interface supportsAsynchronousLoading Types, which implement this interface, can load their content a...
Definition:
supportsAsynchronousLoading.php:27
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\$content_wrapper
Closure $content_wrapper
Definition:
Complex.php:49
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
Definition:
hasSymbol.php:30
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbolTrait
trait hasSymbolTrait
Trait hasSymbolTrait.
Definition:
hasSymbolTrait.php:32
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\withContentWrapper
withContentWrapper(Closure $content_wrapper)
Definition:
Complex.php:57
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasContent
Interface hasContent.
Definition:
hasContent.php:29
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\getTitle
getTitle()
Definition:
Complex.php:105
hasContent
hasTitle
AbstractChildItem
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\$supports_async_loading
bool $supports_async_loading
Definition:
Complex.php:52
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\$content
Component $content
Definition:
Complex.php:50
ILIAS\GlobalScreen\Scope\MainMenu\Factory\AbstractChildItem
Class AbstractBaseItem.
Definition:
AbstractChildItem.php:29
isInterchangeableItem
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\withSupportsAsynchronousLoading
withSupportsAsynchronousLoading(bool $supported)
Definition:
Complex.php:113
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Complex\supportsAsynchronousLoading
supportsAsynchronousLoading()
Definition:
Complex.php:124
components
ILIAS
GlobalScreen
src
Scope
MainMenu
Factory
Item
Complex.php
Generated on Thu Apr 3 2025 23:03:00 for ILIAS by
1.8.13 (using
Doxyfile
)