ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
DataRetrieval.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
29 interface DataRetrieval
30 {
35  public function getEntities(
36  Mapping $mapping,
37  ?Range $range,
38  ?array $additional_parameters
39  ): \Generator;
40 }
getEntities(Mapping $mapping, ?Range $range, ?array $additional_parameters)
This is to accumulate/consolidate the data to be shown in the listing.
A simple class to express a range of whole positive numbers.
Definition: Range.php:30
Hand a record over to RecordToEntity and factor an Entity.
Definition: Mapping.php:28