ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
RetrievalInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
28  public function getData(
29  array $fields,
30  ?Range $range = null,
31  ?Order $order = null,
32  array $filter = [],
33  array $parameters = []
34  ): \Generator;
35 
36  public function count(
37  array $filter,
38  array $parameters
39  ): int;
40 }
count(array $filter, array $parameters)
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
A simple class to express a naive range of whole positive numbers.
Definition: Range.php:28
getData(array $fields, ?Range $range=null, ?Order $order=null, array $filter=[], array $parameters=[])