ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
URLBuilder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\KioskMode;
22 
23 use ILIAS\Data;
24 
29 interface URLBuilder
30 {
34  public function getURL(string $command, ?int $param = null): Data\URI;
35 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$param
Definition: xapitoken.php:46
getURL(string $command, ?int $param=null)
Get an URL for the provided command and params.
The URLBuilder allows views to get links that are used somewhere inline in the content.
Definition: URLBuilder.php:29