ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
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 
26 interface Factory
27 {
51  public function horizontal(): Horizontal\Factory;
52 
74  public function vertical(Block ...$blocks): Vertical;
75 }
This describes an Vertical Alignment.
Definition: Vertical.php:28
This is what a factory for horizontal alignments layouts looks like.
Definition: Factory.php:28
horizontal()
description: purpose: > An Horizontal Alignment groups Blocks and displays those groups horizontally...
This is what a factory for alignment layouts looks like.
Definition: Factory.php:26
vertical(Block ... $blocks)
description: purpose: > A Vertical Alignment groups Blocks and displays those groups vertically alig...
This is the interface for Blocks.
Definition: Block.php:27