ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Tool.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
21 
22 use Closure;
31 use LogicException;
32 
38 {
39  protected string $title;
41  protected ?Symbol $symbol = null;
42  protected ?Component $content = null;
45 
50  public function withTitle(string $title): hasTitle
51  {
52  $clone = clone($this);
53  $clone->title = $title;
54 
55  return $clone;
56  }
57 
61  public function getTitle(): string
62  {
63  return $this->title;
64  }
65 
69  public function withContentWrapper(Closure $content_wrapper): hasContent
70  {
71  $clone = clone($this);
72  $clone->content_wrapper = $content_wrapper;
73 
74  return $clone;
75  }
76 
80  public function withContent(Component $ui_component): hasContent
81  {
82  $clone = clone($this);
83  $clone->content = $ui_component;
84 
85  return $clone;
86  }
87 
91  public function getContent(): Component
92  {
93  if ($this->content_wrapper !== null) {
94  $wrapper = $this->content_wrapper;
95 
96  return $wrapper();
97  }
98 
99  return $this->content;
100  }
101 
105  public function withSymbol(Symbol $symbol): hasSymbol
106  {
107  // bugfix mantis 25526: make aria labels mandatory
108  if (($symbol instanceof Glyph\Glyph && $symbol->getAriaLabel() === "") ||
109  ($symbol instanceof Icon\Icon && $symbol->getLabel() === "")) {
110  throw new LogicException("the symbol's aria label MUST be set to ensure accessibility");
111  }
112 
113  $clone = clone($this);
114  $clone->symbol = $symbol;
115 
116  return $clone;
117  }
118 
122  public function getSymbol(): Symbol
123  {
124  return $this->symbol;
125  }
126 
130  public function hasSymbol(): bool
131  {
132  return ($this->symbol instanceof Symbol);
133  }
134 
139  {
140  $clone = clone $this;
141  $clone->terminated_callback = $callback;
142 
143  return $clone;
144  }
145 
149  public function getTerminatedCallback(): ?Closure
150  {
152  }
153 
157  public function hasTerminatedCallback(): bool
158  {
159  return $this->terminated_callback instanceof Closure;
160  }
161 }
getLabel()
Get the label of this icon.
This describes a symbol.
Definition: Symbol.php:29
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withTerminatedCallback(Closure $callback)
Definition: Tool.php:138
withContentWrapper(Closure $content_wrapper)
Definition: Tool.php:69
withContent(Component $ui_component)
Definition: Tool.php:80