ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
GlyphRendererFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
28 {
29  public const USE_BUTTON_CONTEXT_FOR = [
30  'StandardButton',
31  'PrimaryButton',
32  'BulkyButton',
33  'ShyButton',
34  'BulkyLink',
35  'ShyLink',
36  ];
37 
38  public function getRendererInContext(Component\Component $component, array $contexts): ComponentRenderer
39  {
40  if (count(array_intersect(self::USE_BUTTON_CONTEXT_FOR, $contexts)) > 0) {
41  return new ButtonContextRenderer(
42  $this->ui_factory,
43  $this->tpl_factory,
44  $this->lng,
45  $this->js_binding,
46  $this->image_path_resolver,
47  $this->data_factory,
48  $this->help_text_retriever,
49  $this->upload_limit_resolver
50  );
51  }
52  return new Renderer(
53  $this->ui_factory,
54  $this->tpl_factory,
55  $this->lng,
56  $this->js_binding,
57  $this->image_path_resolver,
58  $this->data_factory,
59  $this->help_text_retriever,
60  $this->upload_limit_resolver
61  );
62  }
63 }
An entity that renders components to a string output.
getRendererInContext(Component\Component $component, array $contexts)