ILIAS  trunk Revision v11.0_alpha-1811-gd2d5443e411
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 
22 
27 
31 interface 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 describes a standard Entity.
Definition: Standard.php:26
This describes a symbol.
Definition: Symbol.php:29
standard(Symbol|Image|ShyButton|ShyLink|string $primary_identifier, Symbol|Image|ShyButton|ShyLink|string $secondary_identifier)
description: purpose: > The Standard Entity can (and should) be used to list system entities such as...
This is the factory for Entities.
Definition: Factory.php:31