ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
base.php
Go to the documentation of this file.
1<?php
2
3function base() {
4 //Init Factory and Renderer
5 global $DIC;
6 $f = $DIC->ui()->factory();
7 $renderer = $DIC->ui()->renderer();
8
9 //Generate List
10 $unordered = $f->listing()->unordered(
11 ["Point 1","Point 2","Point 3"]
12 );
13
14 //Render
15 return $renderer->render($unordered);
16}
base()
Definition: base.php:2
An exception for terminatinating execution or to throw for unit testing.
global $DIC