ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
CanHandleWithURIPath.php
Go to the documentation of this file.
1<?php
2
20
25{
26 public function __construct(
27 private string $uri_path,
28 private int $shift = 0
29 ) {
30 }
31
32 public function getURIPath(): ?string
33 {
34 return $this->uri_path;
35 }
36
37 public function targetCanBeReached(): bool
38 {
39 return true;
40 }
41
42 public function shift(): int
43 {
44 return $this->shift;
45 }
46
47}
__construct(private string $uri_path, private int $shift=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...