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
DecoratedPageBuilder.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
21
namespace
ILIAS\GlobalScreen\Scope\Layout\Builder
;
22
23
use
Closure
;
24
use
ILIAS\GlobalScreen\Scope\Layout\Provider\PagePart\PagePartProvider
;
25
use
ILIAS\UI\Component\Layout\Page\Page
;
26
32
class
DecoratedPageBuilder
implements
PageBuilder
33
{
37
private
$original
;
41
private
$deco
;
42
48
public
function
__construct
(
PageBuilder
$original
,
Closure
$deco
)
49
{
50
$this->original =
$original
;
51
$this->deco =
$deco
;
52
}
53
57
public
function
build
(
PagePartProvider
$parts) :
Page
58
{
59
$deco
=
$this->deco
;
60
return
$deco
($parts);
61
}
62
}
ILIAS\GlobalScreen\Scope\Layout\Builder
PhpPropertyOnlyWrittenInspection
Definition:
DecoratedPageBuilder.php:21
Closure
ILIAS\GlobalScreen\Scope\Layout\Provider\PagePart\PagePartProvider
Interface PagePartProvider.
Definition:
PagePartProvider.php:35
PagePartProvider
ILIAS\GlobalScreen\Scope\Layout\Builder\DecoratedPageBuilder\$original
$original
Definition:
DecoratedPageBuilder.php:37
Page
ILIAS\GlobalScreen\Scope\Layout\Builder\DecoratedPageBuilder
Interface DecoratedPageBuilder.
Definition:
DecoratedPageBuilder.php:32
ILIAS\GlobalScreen\Scope\Layout\Builder\DecoratedPageBuilder\$deco
$deco
Definition:
DecoratedPageBuilder.php:41
ILIAS\UI\Component\Layout\Page\Page
This describes the Page.
Definition:
Page.php:13
ILIAS\GlobalScreen\Scope\Layout\Builder\DecoratedPageBuilder\__construct
__construct(PageBuilder $original, Closure $deco)
DecoratedPageBuilder constructor.
Definition:
DecoratedPageBuilder.php:48
ILIAS\GlobalScreen\Scope\Layout\Builder\PageBuilder
Interface PageBuilder.
Definition:
PageBuilder.php:29
ILIAS\GlobalScreen\Scope\Layout\Builder\DecoratedPageBuilder\build
build(PagePartProvider $parts)
Definition:
DecoratedPageBuilder.php:57
src
GlobalScreen
Scope
Layout
Builder
DecoratedPageBuilder.php
Generated on Wed Apr 23 2025 21:01:42 for ILIAS by
1.8.13 (using
Doxyfile
)