ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjMainMenuGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
31  protected ilTabsGUI $tabs;
32  public ilLanguage $lng;
33  protected ilCtrl $ctrl;
35  public ilTree $tree;
36 
37  public const TAB_PERMISSIONS = 'perm_settings';
38  public const TAB_MAIN = 'main';
39 
43  public function __construct()
44  {
45  global $DIC;
46 
47  $this->ref_id = $DIC->http()->wrapper()->query()->has('ref_id')
48  ? $DIC->http()->wrapper()->query()->retrieve('ref_id', $DIC->refinery()->kindlyTo()->int())
49  : null;
50 
51  parent::__construct($this->ref_id);
52 
53  $this->tabs = $DIC['ilTabs'];
54  $this->lng = $DIC->language();
55  $this->lng->loadLanguageModule('mme');
56  $this->ctrl = $DIC['ilCtrl'];
57  $this->tpl = $DIC['tpl'];
58  $this->tree = $DIC['tree'];
59  $this->rbac_system = $DIC['rbacsystem'];
60  $this->tab_handling = new ilMMTabHandling($this->ref_id);
61 
62  $this->assignObject();
63  }
64 
65  #[\Override]
66  public function executeCommand(): void
67  {
68  $next_class = $this->ctrl->getNextClass();
69 
70  if ($next_class == '') {
71  $this->ctrl->redirectByClass(ilMMTopItemGUI::class);
72 
73  return;
74  }
75 
76  $this->prepareOutput();
77 
78  switch ($next_class) {
79  case strtolower(ilPermissionGUI::class):
80  $this->tab_handling->initTabs(self::TAB_PERMISSIONS);
81  $this->tabs->activateTab(self::TAB_PERMISSIONS);
82  $perm_gui = new ilPermissionGUI($this);
83  $this->ctrl->forwardCommand($perm_gui);
84  break;
85  case strtolower(ilMMTopItemGUI::class):
86  // $this->tab_handling->initTabs(self::TAB_MAIN, self::SUBTAB_SLATES);
87  $g = new ilMMTopItemGUI($this->tab_handling);
88  $this->ctrl->forwardCommand($g);
89  break;
90  case strtolower(ilMMSubItemGUI::class):
91  // $this->tab_handling->initTabs(self::TAB_MAIN, self::SUBTAB_SLATES);
92  $g = new ilMMSubItemGUI($this->tab_handling);
93  $this->ctrl->forwardCommand($g);
94  break;
95  case strtolower(ilMMUploadHandlerGUI::class):
96  $g = new ilMMUploadHandlerGUI();
97  $this->ctrl->forwardCommand($g);
98  break;
99  default:
100  break;
101  }
102  }
103 
107  public function getType(): string
108  {
109  return "";
110  }
111 }
Class ilObjMainMenuGUI ilObjMainMenuGUI: ilAdministrationGUI ilObjMainMenuGUI: ilPermissionGUI.
__construct()
ilObjMainMenuGUI constructor.
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
New implementation of ilObjectGUI.
prepareOutput(bool $show_sub_objects=true)
Class ilMMUploadHandlerGUI.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilMMTabHandling.
global $DIC
Definition: shib_login.php:22
Class ilMMTopItemGUI ilMMSubItemGUI: ilObjMainMenuGUI ilMMSubItemGUI: ilMMItemTranslationGUI.
Class ilMMTopItemGUI ilMMTopItemGUI: ilObjMainMenuGUI ilMMTopItemGUI: ilMMItemTranslationGUI.
__construct(Container $dic, ilPlugin $plugin)
assignObject()
create object instance as internal property (repository/workspace switch)
ilMMTabHandling $tab_handling