ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
isDecorateable.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\GlobalScreen\Scope;
22 
23 use Closure;
25 
29 interface isDecorateable
30 {
31  public function withTopics(Topic ...$topics): self;
32 
33  public function getTopics(): array;
34 
39  public function addComponentDecorator(Closure $component_decorator): self;
40 
41  public function getComponentDecorator(): ?Closure;
42 }
This is just a class that marks a string as a help topic.
Definition: Topic.php:26
addComponentDecorator(Closure $component_decorator)
Add a Closure to decorate the Component using withAdditionalOnloadCode