ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
base_text_block.php
Go to the documentation of this file.
1<?php
2
3function base_text_block() {
4 global $DIC;
5 $f = $DIC->ui()->factory();
6 $renderer = $DIC->ui()->renderer();
7
8 $panel = $f->panel()->standard(
9 "Panel Title",
10 $f->legacy("Some Content")
11 );
12
13 return $renderer->render($panel);
14}
base_text_block()
An exception for terminatinating execution or to throw for unit testing.
global $DIC