ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
DefaultRendererFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 use ilLanguage;
28 
30 {
33  protected ilLanguage $lng;
35  protected Refinery $refinery;
38 
39  public function __construct(
40  RootFactory $ui_factory,
41  TemplateFactory $tpl_factory,
42  ilLanguage $lng,
43  JavaScriptBinding $js_binding,
44  Refinery $refinery,
45  ImagePathResolver $image_path_resolver,
46  DataFactory $data_factory
47  ) {
48  $this->ui_factory = $ui_factory;
49  $this->tpl_factory = $tpl_factory;
50  $this->lng = $lng;
51  $this->js_binding = $js_binding;
52  $this->refinery = $refinery;
53  $this->image_path_resolver = $image_path_resolver;
54  $this->data_factory = $data_factory;
55  }
56 
60  public function getRendererInContext(Component $component, array $contexts): ComponentRenderer
61  {
62  $name = $this->getRendererNameFor($component);
63  return new $name(
64  $this->ui_factory,
65  $this->tpl_factory,
66  $this->lng,
67  $this->js_binding,
68  $this->refinery,
69  $this->image_path_resolver,
70  $this->data_factory
71  );
72  }
73 
77  protected function getRendererNameFor(Component $component): string
78  {
79  $class = get_class($component);
80  $parts = explode("\\", $class);
81  $parts[count($parts) - 1] = "Renderer";
82  return implode("\\", $parts);
83  }
84 
88  public function getJSBinding(): JavaScriptBinding
89  {
90  return $this->js_binding;
91  }
92 }
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
Definition: ltitoken.php:64
An entity that renders components to a string output.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Some Components need to resolve pathes to image-files.
if($format !==null) $name
Definition: metadata.php:247
getRendererNameFor(Component $component)
Get the name for the renderer of Component class.
__construct(RootFactory $ui_factory, TemplateFactory $tpl_factory, ilLanguage $lng, JavaScriptBinding $js_binding, Refinery $refinery, ImagePathResolver $image_path_resolver, DataFactory $data_factory)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides methods to interface with javascript.
This is the interface that components should use if they want to load specific renderers.
getRendererInContext(Component $component, array $contexts)
Interface for a factory that provides templates.