ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Action.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
30abstract class Action
31{
32 public function __construct(
33 private string $label,
34 private URI|Signal $action
35 ) {
36 }
37
38 public function getLabel(): string
39 {
40 return $this->label;
41 }
42
43 public function getAction(): URI|Signal
44 {
45 return $this->action;
46 }
47
48}
The scope of this class is split ilias-conform URI's into components.
Definition: URI.php:35
__construct(private string $label, private URI|Signal $action)
Definition: Action.php:32