ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
RetrievalInterface.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Repository
;
22
23
use
ILIAS\Data\Range
;
24
use
ILIAS\Data\Order
;
25
26
interface
RetrievalInterface
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
41
public
function
isFieldNumeric
(
42
string
$field
43
): bool;
44
}
ILIAS\Data\Order
Both the subject and the direction need to be specified when expressing an order.
Definition:
Order.php:29
ILIAS\Data\Range
A simple class to express a naive range of whole positive numbers.
Definition:
Range.php:29
ILIAS\Repository\RetrievalInterface
Definition:
RetrievalInterface.php:27
ILIAS\Repository\RetrievalInterface\isFieldNumeric
isFieldNumeric(string $field)
ILIAS\Repository\RetrievalInterface\getData
getData(array $fields, ?Range $range=null, ?Order $order=null, array $filter=[], array $parameters=[])
ILIAS\Repository\RetrievalInterface\count
count(array $filter, array $parameters)
ILIAS\Repository
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\UI\Implementation\Component\Table\$range
Range $range
Definition:
TableViewControlPagination.php:30
components
ILIAS
Repository
Service
RetrievalInterface.php
Generated on Sat Oct 18 2025 23:03:36 for ILIAS by
1.9.4 (using
Doxyfile
)