ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
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 }