ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSystemStyleDocumentationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 {
29  protected ilCtrl $ctrl;
30  protected ILIAS\UI\Factory $f;
31  protected ILIAS\UI\Renderer $r;
32 
33  public const SHOW_TREE = 'system_styles_show_tree';
34 
35  public function __construct(
37  ilCtrl $ctrl,
38  ILIAS\UI\Factory $f,
39  ILIAS\UI\Renderer $r
40  ) {
41  $this->f = $f;
42  $this->r = $r;
43  $this->ctrl = $ctrl;
44  $this->tpl = $tpl;
45  }
46 
47  public function show(Entries $entries, string $current_opened_node_id): void
48  {
49  $entry_gui = new ilKSDocumentationEntryGUI(
50  $this->f,
51  $this->ctrl,
52  $entries,
53  $current_opened_node_id
54  );
55 
56  $this->tpl->setContent($this->r->render($entry_gui->createUIComponentOfEntry()));
57  }
58 }
Interface Observer Contains several chained tasks and infos about them.
Container storing a list of UI Component Entries, can act as Iterator, countable and is serializable...
Renders the Overview of one Example in the Administration.
show(Entries $entries, string $current_opened_node_id)
Renders the Overview of the Examples in the Administration.
__construct(ilGlobalTemplateInterface $tpl, ilCtrl $ctrl, ILIAS\UI\Factory $f, ILIAS\UI\Renderer $r)