ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\UI\Component\Link;
22 
24 use ILIAS\Data\URI;
25 
29 interface Factory
30 {
53  public function standard(string $label, string $action): Standard;
54 
98  public function bulky(Symbol $symbol, string $label, URI $target): Bulky;
99 }
This describes a symbol.
Definition: Symbol.php:29