ILIAS  trunk Revision v12.0_alpha-1613-gae4c99ebb18
Table.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
27interface Table extends DataRetrieval
28{
29 public function getTableId(): string;
30
31 public function execute(URLBuilder $url_builder): mixed;
32
36 public function getComponents(URLBuilder $url_builder): array;
37}
execute(URLBuilder $url_builder)
getComponents(URLBuilder $url_builder)
A component is the most general form of an entity in the UI.
Definition: Component.php:28