ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilUiLinkToSplitButtonMenuItemAdapter.php
Go to the documentation of this file.
1 <?php
2 
21 
27 {
28  protected Button $link;
29  protected Renderer $renderer;
30 
31  public function __construct(Button $link, Renderer $renderer)
32  {
33  $this->link = $link;
34  $this->renderer = $renderer;
35  }
36 
37  public function getContent(): string
38  {
39  return $this->renderer->render([$this->link]);
40  }
41 }
An entity that renders components to a string output.
Definition: Renderer.php:30
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Bulky.php:21
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...