ILIAS  release_8 Revision v8.24
ModeInfo.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21