ILIAS  trunk Revision v12.0_alpha-1338-g8f7e531aa3c
hasAction.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
29interface hasAction extends isItem
30{
31 public function withAction(URI|Signal|string $action): self;
32
33 public function getAction(): URI|Signal|string;
34
35 public function withOpenInNewViewport(bool $state);
36
37 public function mustOpenInNewViewport(): bool;
38}
The scope of this class is split ilias-conform URI's into components.
Definition: URI.php:35