ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ModeInfo.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
23 use ILIAS\Data\URI;
26 
33 {
34  use ComponentHelper;
35 
36  private string $mode_title;
37  private URI $close_action;
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 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
__construct(string $mode_title, URI $close_action)
Definition: ModeInfo.php:39
The scope of this class is split ilias-conform URI&#39;s into components.
Definition: URI.php:34
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21