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
DecoratedPageBuilder.php
Go to the documentation of this file.
1
<?php
namespace
ILIAS\GlobalScreen\Scope\Layout\Builder
;
2
3
use
Closure
;
4
use
ILIAS\GlobalScreen\Scope\Layout\Provider\PagePart\PagePartProvider
;
5
use
ILIAS\UI\Component\Layout\Page\Page
;
6
14
class
DecoratedPageBuilder
implements
PageBuilder
15
{
16
20
private
$original
;
24
private
$deco
;
25
26
33
public
function
__construct
(
PageBuilder
$original
,
Closure
$deco
)
34
{
35
$this->original =
$original
;
36
$this->deco =
$deco
;
37
}
38
39
43
public
function
build
(
PagePartProvider
$parts) :
Page
44
{
45
$deco
=
$this->deco
;
46
47
// $page = $this->original->build($parts);
48
49
return
$deco
($parts);
50
}
51
}
ILIAS\GlobalScreen\Scope\Layout\Builder
Definition:
DecoratedPageBuilder.php:1
Closure
ILIAS\GlobalScreen\Scope\Layout\Provider\PagePart\PagePartProvider
Interface PagePartProvider.
Definition:
PagePartProvider.php:15
PagePartProvider
ILIAS\GlobalScreen\Scope\Layout\Builder\DecoratedPageBuilder\$original
$original
Definition:
DecoratedPageBuilder.php:20
Page
ILIAS\GlobalScreen\Scope\Layout\Builder\DecoratedPageBuilder
Interface DecoratedPageBuilder.
Definition:
DecoratedPageBuilder.php:14
ILIAS\GlobalScreen\Scope\Layout\Builder\DecoratedPageBuilder\$deco
$deco
Definition:
DecoratedPageBuilder.php:24
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:33
ILIAS\GlobalScreen\Scope\Layout\Builder\PageBuilder
Interface PageBuilder.
Definition:
PageBuilder.php:11
ILIAS\GlobalScreen\Scope\Layout\Builder\DecoratedPageBuilder\build
build(PagePartProvider $parts)
Definition:
DecoratedPageBuilder.php:43
src
GlobalScreen
Scope
Layout
Builder
DecoratedPageBuilder.php
Generated on Wed Apr 9 2025 20:01:38 for ILIAS by
1.8.13 (using
Doxyfile
)