ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjFooterAdministrationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
33 {
37  public const CMD_DEFAULT = 'view';
41  public const TAB_INDEX = 'index';
45  public const TAB_PERMISSIONS = 'permissions';
46  private readonly Container $container;
47  private readonly GroupsRepositoryDB $repository;
49  private readonly Translator $translator;
51 
52  public function __construct()
53  {
54  parent::__construct(...func_get_args());
55  global $DIC;
56  $this->container = $DIC;
57  $this->main_tpl = $this->container->ui()->mainTemplate();
58 
59  $this->translator = new Translator($DIC);
60 
61  $this->ui_handling = new ilObjFooterUIHandling(
62  $this->container->ui(),
63  $this->container->http(),
69  $this->object->getRefId()
70  );
71 
72  $this->repository = new GroupsRepositoryDB(
73  $this->container->database(),
75  );
76  }
77 
78  // HELPERS AND NEEDED IMPLEMENATIONS
79 
80  #[\Override]
81  public function view(): void
82  {
83  $this->ctrl->redirectByClass(ilFooterGroupsGUI::class);
84  }
85 
86  public function getType(): string
87  {
88  return 'gsfo';
89  }
90 
91  #[\Override]
92  public function executeCommand(): void
93  {
94  $this->ui_handling->requireReadable();
95  $this->prepareOutput();
96 
97  $this->container->language()->loadLanguageModule('gsfo');
98 
99  $this->main_tpl->setTitle($this->translator->translate('obj_gsfo'));
100  $this->main_tpl->setDescription($this->translator->translate('obj_gsfo_desc'));
101 
102  $next_class = $this->ctrl->getNextClass($this) ?? '';
103  $cmd = $this->ctrl->getCmd(self::CMD_DEFAULT);
104 
105  switch (strtolower($next_class)) {
106  case strtolower(ilPermissionGUI::class):
107  $this->tabs_gui->activateTab(self::TAB_PERMISSIONS);
108  $this->ctrl->forwardCommand(new ilPermissionGUI($this));
109  return;
110  case strtolower(ilFooterGroupsGUI::class):
111  $this->tabs_gui->activateTab(self::TAB_INDEX);
112  $this->ctrl->forwardCommand(
113  new ilFooterGroupsGUI(
114  $this->container,
115  $this->translator,
116  $this->ui_handling
117  )
118  );
119  return;
120  default:
121  $this->{$cmd}();
122  return;
123  }
124  }
125 
126  #[\Override]
127  public function getAdminTabs(): void
128  {
129  $this->ui_handling->buildMainTabs();
130  }
131 
132 }
ilErrorHandling $error
New implementation of ilObjectGUI.
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
prepareOutput(bool $show_sub_objects=true)
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
readonly ilObjFooterUIHandling $ui_handling
global $DIC
Definition: shib_login.php:22
readonly ilGlobalTemplateInterface $main_tpl
__construct(Container $dic, ilPlugin $plugin)
ilRbacSystem $rbac_system