ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ ilDoc Overview
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
private
MetaContent
$meta_content
;
35
private
ModificationFactory
$modification_factory
;
36
40
public
function
__construct
(
string
$resource_version)
41
{
42
$this->meta_content =
new
MetaContent
(
43
$resource_version,
44
false
,
45
true
,
46
true
,
47
false
48
);
49
$this->modification_factory =
new
ModificationFactory
();
50
}
51
55
public
function
factory
():
ModificationFactory
56
{
57
return
$this->modification_factory
;
58
}
59
63
public
function
meta
():
MetaContent
64
{
65
return
$this->meta_content
;
66
}
67
}
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\SingletonTrait
trait SingletonTrait
Class SingletonTrait.
Definition:
SingletonTrait.php:29
ILIAS\GlobalScreen\Scope\Layout
PhpIncompatibleReturnTypeInspection
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\__construct
__construct(string $resource_version)
LayoutServices constructor.
Definition:
LayoutServices.php:40
MetaContent
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\$modification_factory
ModificationFactory $modification_factory
Definition:
LayoutServices.php:35
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\$meta_content
MetaContent $meta_content
Definition:
LayoutServices.php:34
ILIAS\GlobalScreen\Scope\Layout\MetaContent\MetaContent
Definition:
MetaContent.php:41
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\meta
meta()
Definition:
LayoutServices.php:63
ILIAS\GlobalScreen\Scope\Layout\LayoutServices\factory
factory()
Definition:
LayoutServices.php:55
components
ILIAS
GlobalScreen
src
Scope
Layout
LayoutServices.php
Generated on Wed Sep 10 2025 15:15:41 for ILIAS by
1.8.13 (using
Doxyfile
)