ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
TOCBuilder.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 2018 - Richard Klees <richard.klees@concepts-and-training.de> - Extended GPL, see LICENSE */
3 
4 namespace ILIAS\KioskMode;
5 
6 use ILIAS\UI;
7 
11 interface TOCBuilder
12 {
13  const LP_NOT_STARTED = 0;
14  const LP_IN_PROGRESS = 1;
15  const LP_COMPLETED = 2;
16  const LP_FAILED = 3;
17 
23  public function end();
24 
35  public function node($label, int $parameter = null, $lp = null) : TOCBuilder;
36 
48  public function item(string $label, int $parameter, $state = null, bool $current = false) : TOCBuilder;
49 }
node($label, int $parameter=null, $lp=null)
Build a sub tree in the TOC.
Build a nested table of contents for the view.
Definition: TOCBuilder.php:11
item(string $label, int $parameter, $state=null, bool $current=false)
Build an entry in the TOC.
end()
Finish building the TOC.