ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
TableSelection.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\LegalDocuments;
22 
23 interface TableSelection
24 {
28  public function filter(): array;
29  public function getOrderDirection(): string;
30  public function getOrderField(): string;
31  public function getLimit(): int;
32  public function getOffset(): int;
33  public function setMaxCount(int $a_max_count): void;
34 }