ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjFileAccessSettingsGUI.php
Go to the documentation of this file.
1 <?php
26 
40 {
41  public const CMD_EDIT_SETTINGS = 'editSettings';
42  public const CMD_SHOW_PREVIEW_RENDERERS = 'showPreviewRenderers';
43  public const SUBTAB_SUFFIX_SPECIFIC_ICONS = 'suffix_specific_icons';
44  public const CMD_SAVE_SETTINGS = 'saveSettings';
45  public const CMD_VIEW = 'view';
48  private \ILIAS\components\File\Settings\Form $file_object_settings;
49  protected Factory $ui_factory;
51  protected Services $http;
52 
58  public function __construct($a_data, int $a_id, bool $a_call_by_reference)
59  {
60  global $DIC;
61  $this->type = "facs";
62  parent::__construct($a_data, $a_id, $a_call_by_reference, false);
63  $this->preview_settings = new Form(new Settings());
64  $this->file_object_settings = new \ILIAS\components\File\Settings\Form(new General());
65  $this->http = $DIC->http();
66  $this->ui_factory = $DIC->ui()->factory();
67  $this->ui_renderer = $DIC->ui()->renderer();
68  $this->language = $DIC->language();
69  }
70 
71  protected function checkAccess(string $permission): void
72  {
73  if (!$this->access->checkAccess($permission, '', $this->object->getRefId())) {
74  $this->ilias->raiseError(
75  $this->lng->txt('no_permission'),
76  $this->ilias->error_obj->MESSAGE
77  );
78  }
79  }
80 
81  private function buildForm(): Standard
82  {
83  return $this->ui_factory->input()->container()->form()->standard(
84  $this->ctrl->getLinkTarget($this, self::CMD_SAVE_SETTINGS),
85  [
86  $this->file_object_settings->asFormSection(),
87  $this->preview_settings->asFormSection(),
88  ]
89  );
90  }
91 
92  #[\Override]
93  public function executeCommand(): void
94  {
95  $this->lng->loadLanguageModule("file");
96 
97  $this->prepareOutput();
98 
99  $this->checkAccess('read');
100 
101  switch ($this->ctrl->getNextClass($this)) {
102  case 'ilpermissiongui':
103  $this->tabs_gui->setTabActive('perm_settings');
104  $perm_gui = new ilPermissionGUI($this);
105  $this->ctrl->forwardCommand($perm_gui);
106  break;
107  case strtolower(ilObjFileIconsOverviewGUI::class):
108  $this->tabs_gui->setTabActive('file_objects');
109  $this->addFileObjectsSubTabs();
110  $this->tabs_gui->setSubTabActive(self::SUBTAB_SUFFIX_SPECIFIC_ICONS);
111  $icon_overview = new ilObjFileIconsOverviewGUI();
112  $this->ctrl->forwardCommand($icon_overview);
113  break;
114  default:
115  $cmd = $this->ctrl->getCmd(self::CMD_EDIT_SETTINGS);
116  $this->tabs_gui->setTabActive('file_objects');
117  switch ($cmd) {
118  case self::CMD_VIEW:
119  case self::CMD_EDIT_SETTINGS:
120  $this->checkAccess('read');
121  $this->editSettings();
122  break;
123  case self::CMD_SAVE_SETTINGS:
124  $this->checkAccess('write');
125  $this->saveSettings();
126  break;
127  default:
128  throw new ilException("ilObjFileAccessSettingsGUI: Command not found: $cmd");
129  }
130  break;
131  }
132  }
133 
134  #[\Override]
135  public function getAdminTabs(): void
136  {
137  if ($this->rbac_system->checkAccess("visible,read", $this->object->getRefId())) {
138  $this->tabs_gui->addTarget(
139  'file_objects',
140  $this->ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS),
141  [self::CMD_EDIT_SETTINGS, self::CMD_VIEW]
142  );
143  }
144  if ($this->rbac_system->checkAccess('edit_permission', $this->object->getRefId())) {
145  $this->tabs_gui->addTarget(
146  "perm_settings",
147  $this->ctrl->getLinkTargetByClass('ilpermissiongui', "perm"),
148  [],
149  'ilpermissiongui'
150  );
151  }
152  }
153 
154  protected function addFileObjectsSubTabs(): void
155  {
156  $this->tabs_gui->addSubTabTarget(
157  "settings",
158  $this->ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS),
159  [self::CMD_EDIT_SETTINGS, "view"]
160  );
161  $this->tabs_gui->addSubTabTarget(
162  self::SUBTAB_SUFFIX_SPECIFIC_ICONS,
163  $this->ctrl->getLinkTargetByClass(ilObjFileIconsOverviewGUI::class, ilObjFileIconsOverviewGUI::CMD_INDEX),
164  [ilObjFileIconsOverviewGUI::CMD_INDEX, "view"]
165  );
166  }
167 
168 
169  protected function editSettings(): void
170  {
171  $this->addFileObjectsSubTabs();
172  $this->tabs_gui->setSubTabActive("settings");
173  $form = $this->buildForm();
174  $this->tpl->setContent($this->ui_renderer->render($this->buildForm()));
175  }
176 
177  protected function saveSettings(): void
178  {
179  $form = $this->buildForm();
180  $form = $form->withRequest($this->http->request());
181 
182  if ($form->getData() === null) {
183  $this->tpl->setContent($this->ui_renderer->render($form));
184  return;
185  }
186 
187  $this->tpl->setOnScreenMessage(
188  'success',
189  $this->language->txt('settings_saved'),
190  true
191  );
192  $this->ctrl->redirect($this, self::CMD_EDIT_SETTINGS);
193  }
194 }
prepareOutput(bool $show_sub_objects=true)
__construct($a_data, int $a_id, bool $a_call_by_reference)
Constructor.
Class ilObjFileAccessSettingsGUI.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
ILIAS components File Settings Form $file_object_settings
This is how the factory for UI elements looks.
Definition: Factory.php:37
Class ilObjectGUI Basic methods of all Output classes.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
Class ilObjForumAdministration.
This describes a standard form.
Definition: Standard.php:28
__construct(Container $dic, ilPlugin $plugin)
language()
description: > Example for rendring a language glyph.
Definition: language.php:41