19 declare(strict_types=1);
    21 require_once(
"libs/composer/vendor/autoload.php");
    23 require_once(__DIR__ . 
"/Base.php");
    49         $this->dic[
"tpl"] = $tpl_fac->getTemplate(
"tpl.main.html", 
false, 
false);
    52         $this->dic[
"refinery"] = 
new RefinaryFactory($data_factory, $this->dic[
"lng"]);
    62         if (!isset($this->dic)) {
    65         return $this->dic->ui()->factory();
    70         if (!isset($this->dic)) {
    73         return $this->dic->ui()->renderer();
    78         if (!isset($this->dic)) {
    81         return $this->dic->ui()->mainTemplate();
 An entity that renders components to a string output. 
 
Customizing of pimple-DIC for ILIAS. 
 
init(Container $dic=null)
 
Responsible for loading the UI Framework into the dependency injection container of ILIAS...
 
Class UITestHelper can be helpful for test cases outside the UI Components, to inject a working facto...