ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Factory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25use ILIAS\UI\Component\Button\Shy as ShyButton;
27
31interface Factory
32{
42 public function standard(
43 Symbol | Image | ShyButton | ShyLink | string $primary_identifier,
44 Symbol | Image | ShyButton | ShyLink | string $secondary_identifier
45 ): Standard;
46}
This is the factory for Entities.
Definition: Factory.php:32
standard(Symbol|Image|ShyButton|ShyLink|string $primary_identifier, Symbol|Image|ShyButton|ShyLink|string $secondary_identifier)
This describes a standard Entity.
Definition: Standard.php:27
This describes a symbol.
Definition: Symbol.php:30