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
LayoutServices.php
Go to the documentation of this file.
1
<?php
namespace
ILIAS\GlobalScreen\Scope\Layout
;
2
3
use
ILIAS\GlobalScreen\Scope\Layout\Factory\ModificationFactory
;
4
use
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaContent
;
5
use
ILIAS\GlobalScreen\SingletonTrait
;
6
12
class
LayoutServices
13
{
14
use
SingletonTrait
;
18
private
$meta_content
;
19
23
public
function
__construct
(
string
$resource_version)
24
{
25
$this->meta_content =
new
MetaContent
($resource_version);
26
}
27
28
32
public
function
factory
() :
ModificationFactory
33
{
34
return
$this->
get
(ModificationFactory::class);
35
}
36
37
41
public
function
meta
() :
MetaContent
42
{
43
return
$this->meta_content
;
44
}
45
}
ILIAS\GlobalScreen\Scope\Layout\Factory\ModificationFactory
Class ModificationFactory.
Definition:
ModificationFactory.php:8
ILIAS\GlobalScreen\Scope\Layout\LayoutServices
Class LayoutServices.
Definition:
LayoutServices.php:12
ModificationFactory
ILIAS\GlobalScreen\Scope\Layout
ILIAS\GlobalScreen\SingletonTrait
trait SingletonTrait
Class SingletonTrait.
Definition:
SingletonTrait.php:9
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\__construct
__construct(string $resource_version)
LayoutServices constructor.
Definition:
LayoutServices.php:23
MetaContent
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\$meta_content
$meta_content
Definition:
LayoutServices.php:18
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaContent
Definition:
MetaContent.php:20
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\meta
meta()
Definition:
LayoutServices.php:41
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\factory
factory()
Definition:
LayoutServices.php:32
src
GlobalScreen
Scope
Layout
LayoutServices.php
Generated on Sat Apr 12 2025 20:01:35 for ILIAS by
1.8.13 (using
Doxyfile
)