ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ModeInfo.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25use ILIAS\UI\Implementation\Component\ComponentHelper;
26
33{
34 use ComponentHelper;
35
36 private string $mode_title;
38
39 public function __construct(string $mode_title, URI $close_action)
40 {
41 $this->mode_title = $mode_title;
42 $this->close_action = $close_action;
43 }
44
45 public function getModeTitle(): string
46 {
47 return $this->mode_title;
48 }
49
50 public function getCloseAction(): URI
51 {
52 return $this->close_action;
53 }
54}
The scope of this class is split ilias-conform URI's into components.
Definition: URI.php:35
__construct(string $mode_title, URI $close_action)
Definition: ModeInfo.php:39