ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
LayoutServices.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
22
namespace
ILIAS\GlobalScreen\Scope\Layout
;
23
24
use
ILIAS\GlobalScreen\Scope\Layout\Factory\ModificationFactory
;
25
use
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaContent
;
26
use
ILIAS\GlobalScreen\SingletonTrait
;
27
32
class
LayoutServices
33
{
34
use
SingletonTrait
;
35
36
private
MetaContent
$meta_content
;
37
41
public
function
__construct
(
string
$resource_version)
42
{
43
$this->meta_content =
new
MetaContent
($resource_version);
44
}
45
49
public
function
factory
():
ModificationFactory
50
{
51
return
$this->
get
(ModificationFactory::class);
52
}
53
57
public
function
meta
():
MetaContent
58
{
59
return
$this->meta_content
;
60
}
61
}
ILIAS\GlobalScreen\Scope\Layout\Factory\ModificationFactory
Class ModificationFactory.
Definition:
ModificationFactory.php:26
ILIAS\GlobalScreen\Scope\Layout\LayoutServices
Class LayoutServices.
Definition:
LayoutServices.php:32
ModificationFactory
ILIAS\GlobalScreen\Scope\Layout
PhpIncompatibleReturnTypeInspection
ILIAS\GlobalScreen\SingletonTrait
trait SingletonTrait
Class SingletonTrait.
Definition:
SingletonTrait.php:29
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\__construct
__construct(string $resource_version)
LayoutServices constructor.
Definition:
LayoutServices.php:41
MetaContent
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\$meta_content
MetaContent $meta_content
Definition:
LayoutServices.php:36
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaContent
Definition:
MetaContent.php:40
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\meta
meta()
Definition:
LayoutServices.php:57
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\factory
factory()
Definition:
LayoutServices.php:49
src
GlobalScreen
Scope
Layout
LayoutServices.php
Generated on Wed Apr 9 2025 22:02:54 for ILIAS by
1.8.13 (using
Doxyfile
)