ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclSwitcher.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
24  protected \ILIAS\UI\Factory $ui_factory;
25  protected ilLanguage $lng;
26  protected ilCtrl $ctrl;
27 
28  public function __construct(ilToolbarGUI $toolbar, \ILIAS\UI\Factory $ui_factory, ilCtrl $ctrl, ilLanguage $lng)
29  {
30  $this->toolbar = $toolbar;
31  $this->ui_factory = $ui_factory;
32  $this->ctrl = $ctrl;
33  $this->lng = $lng;
34  }
35 
43  public function addTableSwitcherToToolbar(array $tables, string $target_class, string $target_cmd): void
44  {
45  $links = [];
46 
47  $this->ctrl->clearParameterByClass(ilObjDataCollectionGUI::class, "tableview_id");
48  $this->ctrl->clearParameterByClass($target_class, "tableview_id");
49 
50  foreach ($tables as $table) {
51  $this->ctrl->setParameterByClass($target_class, "table_id", $table->getId());
52  $links[] = $this->ui_factory->link()->standard($table->getTitle(), $this->ctrl->getLinkTargetByClass($target_class, $target_cmd));
53  }
54  $this->ctrl->clearParameterByClass($target_class, "table_id");
55 
56  $this->addSwitcherToToolbar($links, $this->lng->txt('dcl_switch_table'));
57  }
58 
67  public function addViewSwitcherToToolbar(array $views, int $table_id, string $target_class, string $target_cmd): void
68  {
69  $links = [];
70  $this->ctrl->setParameterByClass($target_class, "table_id", $table_id);
71  foreach ($views as $view) {
72  $this->ctrl->setParameterByClass($target_class, "tableview_id", $view->getId());
73  $links[] = $this->ui_factory->link()->standard($view->getTitle(), $this->ctrl->getLinkTargetByClass($target_class, $target_cmd));
74  }
75  $this->addSwitcherToToolbar($links, $this->lng->txt('dcl_switch_view'));
76  }
77 
83  protected function addSwitcherToToolbar(array $links, string $label): void
84  {
85  if (count($links) > 1) {
86  $this->toolbar->addComponent(
87  $this->ui_factory->dropdown()->standard($links)->withLabel($label)
88  );
89  }
90  }
91 }
addViewSwitcherToToolbar(array $views, int $table_id, string $target_class, string $target_cmd)
addSwitcherToToolbar(array $links, string $label)
Interface Observer Contains several chained tasks and infos about them.
ilToolbarGUI $toolbar
ILIAS UI Factory $ui_factory
__construct(ilToolbarGUI $toolbar, \ILIAS\UI\Factory $ui_factory, ilCtrl $ctrl, ilLanguage $lng)
addTableSwitcherToToolbar(array $tables, string $target_class, string $target_cmd)