ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
Listing.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
26 interface Listing extends Component, Block
27 {
33  public function withItems(array $items): Listing;
34 
40  public function getItems(): array;
41 }
withItems(array $items)
Sets the items to be listed.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getItems()
Gets the items to be listed.
This is the interface for Blocks.
Definition: Block.php:27