ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Renderer.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\UI;
22
24
30interface Renderer
31{
41 public function render($component, ?Renderer $root = null);
42
53 public function renderAsync($component, ?Renderer $root = null);
54}
A component is the most general form of an entity in the UI.
Definition: Component.php:28
An entity that renders components to a string output.
Definition: Renderer.php:31
render($component, ?Renderer $root=null)
Render given component.
renderAsync($component, ?Renderer $root=null)
Same as render, except that this version also returns any javascript code bound to the on load event,...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...