ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Echoing.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 use ILIAS\UI\Help;
25 
30 class Echoing implements HelpTextRetriever
31 {
32  public function getHelpText(Help\Purpose $purpose, Help\Topic ...$topics): array
33  {
34  if ($purpose->isTooltip()) {
35  $purpose = "tooltip";
36  } else {
37  throw new \LogicException("Unknown purpose.");
38  }
39 
40  return array_map(
41  fn ($t) => $purpose . ": " . $t->get(),
42  $topics
43  );
44  }
45 }
This is just a class that marks a string as a help topic.
Definition: Topic.php:26
getHelpText(Help\Purpose $purpose, Help\Topic ... $topics)
Definition: Echoing.php:32
This HelpTextRetriever simply echo the purpose and the topics for debugging and development purpose...
Definition: Echoing.php:30
A purpose describes the intended use for a certain help text.
Definition: Purpose.php:46
This describes a facility that the UI framework can use to retrieve some help text.