ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
PresentationHeader.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Badge;
22 
25 
27 {
28  public function __construct(
29  private readonly Container $container,
30  private readonly string $gui
31  ) {
32  }
33 
34  public function show(string $active, ?Component $add = null): void
35  {
36  $txt = [$this->container->language(), 'txt'];
37  $toolbar = $this->container->toolbar();
38  $view_control = $this->container->ui()->factory()->viewControl()->mode([
39  $txt('tile_view') => $this->container->ctrl()->getLinkTargetByClass($this->gui, 'listBadges'),
40  $txt('table_view') => $this->container->ctrl()->getLinkTargetByClass($this->gui, 'manageBadges'),
41  ], 'View')->withActive($active);
42 
43  $toolbar->addStickyItem($view_control);
44  if ($add) {
45  $toolbar->addStickyItem($add);
46  }
47  }
48 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$container
Definition: wac.php:36
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
show(string $active, ?Component $add=null)
$txt
Definition: error.php:31
__construct(private readonly Container $container, private readonly string $gui)