ILIAS  trunk Revision v11.0_alpha-1843-g9e1fad99175
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HasHelpTopics.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\UI\Component;
22 
24 
25 interface HasHelpTopics
26 {
32  public function withHelpTopics(Topic ...$topics): static;
33 
39  public function withAdditionalHelpTopics(Topic ...$topics): static;
40 
44  public function getHelpTopics(): array;
45 }
This is just a class that marks a string as a help topic.
Definition: Topic.php:26
withAdditionalHelpTopics(Topic ... $topics)
Let this component also have the given topics.
withHelpTopics(Topic ... $topics)
Let this component have the given topics.