ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
DeliverPhpFilter.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
31{
32 private const NEEDLE = '/deliver.php/';
33
34 public function shouldAppend(string $content): bool
35 {
36 return !str_contains($content, self::NEEDLE);
37 }
38}
Excludes URLs delivered by deliver.php from the resource version parameter.