ILIAS
release_8 Revision v8.23
◀ 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
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 Sep 3 2025 22:02:54 for ILIAS by
1.8.13 (using
Doxyfile
)