ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
LayoutServices.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
23
27
33{
36
40 public function __construct(string $resource_version)
41 {
42 $this->meta_content = new MetaContent(
43 $resource_version,
44 true,
45 true,
46 true,
47 false,
48 [new DeliverPhpFilter()]
49 );
50 $this->modification_factory = new ModificationFactory();
51 }
52
53 public function factory(): ModificationFactory
54 {
56 }
57
58 public function meta(): MetaContent
59 {
61 }
62}
__construct(string $resource_version)
LayoutServices constructor.
Excludes URLs delivered by deliver.php from the resource version parameter.
@noinspection PhpIncompatibleReturnTypeInspection