ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ 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
($resource_version);
43
$this->modification_factory =
new
ModificationFactory
();
44
}
45
49
public
function
factory
():
ModificationFactory
50
{
51
return
$this->modification_factory
;
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: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: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 Sep 10 2025 14:12:05 for ILIAS by
1.8.13 (using
Doxyfile
)