19 declare(strict_types=1);
59 $this->
tabs = $DIC[
'ilTabs'];
60 $this->
lng = $DIC->language();
61 $this->
lng->loadLanguageModule(
'adn');
62 $this->
lng->loadLanguageModule(
'irss');
63 $this->
ctrl = $DIC[
'ilCtrl'];
64 $this->tpl = $DIC[
'tpl'];
65 $this->tree = $DIC[
'tree'];
67 $this->error_handling = $DIC[
"ilErr"];
68 $this->
http = $DIC->http()->wrapper();
69 $this->ref_id = $this->
http->query()->retrieve(
'ref_id', $DIC->refinery()->kindlyTo()->int());
71 $this->file_service_settings = $DIC->fileServiceSettings();
82 $this->error_handling->raiseError(
83 $this->
lng->txt(
'no_permission'),
91 return $this->
access->checkAccess($str,
'', $this->ref_id);
101 $this->
lng->loadLanguageModule(
"fils");
103 $next_class = $this->
ctrl->getNextClass($this);
104 $cmd = $this->
ctrl->getCmd();
109 switch ($next_class) {
110 case strtolower(ilPermissionGUI::class):
111 $this->tabs_gui->activateTab(self::TAB_PERMISSIONS);
113 $this->
ctrl->forwardCommand($perm_gui);
115 case strtolower(ilResourceOverviewGUI::class):
116 $this->tabs_gui->activateTab(self::TAB_OVERVIEW);
118 $this->
ctrl->forwardCommand($overview);
120 case strtolower(ilUploadLimitsOverviewGUI::class):
121 $this->tabs_gui->activateTab(self::TAB_UPLOAD_LIMITS);
123 $this->
ctrl->forwardCommand($limits_gui);
126 if (!$cmd || $cmd ===
'view') {
127 $cmd = self::CMD_EDIT_SETTINGS;
141 if ($this->rbac_system->checkAccess(
143 $this->object->getRefId()
146 $this->tabs_gui->addTab(
148 $this->
lng->txt(self::TAB_SETTINGS),
149 $this->
ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS)
153 if ($this->rbac_system->checkAccess(
155 $this->object->getRefId()
158 $this->tabs_gui->addTab(
160 $this->
lng->txt(self::TAB_OVERVIEW),
161 $this->
ctrl->getLinkTargetByClass(ilResourceOverviewGUI::class),
165 if ($this->rbac_system->checkAccess(
167 $this->object->getRefId()
170 $this->tabs_gui->addTab(
171 self::TAB_UPLOAD_LIMITS,
172 $this->
lng->txt(self::TAB_UPLOAD_LIMITS),
173 $this->
ctrl->getLinkTargetByClass(ilUploadLimitsOverviewGUI::class),
177 if ($this->rbac_system->checkAccess(
179 $this->object->getRefId()
182 $this->tabs_gui->addTab(
183 self::TAB_PERMISSIONS,
184 $this->
lng->txt(self::TAB_PERMISSIONS),
185 $this->
ctrl->getLinkTargetByClass(ilPermissionGUI::class,
"perm")
193 parent::setTitleAndDescription();
194 $this->tpl->setDescription($this->
object->getDescription());
202 $form->setFormAction($this->
ctrl->getFormAction($this));
203 $form->setTitle($this->
lng->txt(self::TAB_SETTINGS));
207 $ne->setValue(implode(
", ", $this->file_service_settings->getDefaultWhitelist()));
208 $ne->setInfo($this->
lng->txt(
"file_suffix_default_positive_info"));
214 "file_suffix_custom_negative" 216 "suffix_repl_additional" 218 $ta->
setInfo($this->
lng->txt(
"file_suffix_custom_negative_info"));
220 $ta->setDisabled(!$permission_to_write);
226 "file_suffix_custom_positive" 228 "suffix_custom_white_list" 230 $ta->
setInfo($this->
lng->txt(
"file_suffix_custom_positive_info"));
232 $ta->setDisabled(!$permission_to_write);
237 $ne->setValue(implode(
", ", $this->file_service_settings->getWhiteListedSuffixes()));
238 $ne->setInfo($this->
lng->txt(
"file_suffix_overall_positive_info"));
243 $this->
lng->txt(
"file_suffix_custom_expl_negative"),
244 "suffix_custom_expl_black" 246 $ta->
setInfo($this->
lng->txt(
"file_suffix_custom_expl_negative_info"));
248 $ta->setDisabled(!$permission_to_write);
252 if ($permission_to_write) {
253 $form->addCommandButton(
'saveSettings', $this->
lng->txt(
'save'));
254 $form->addCommandButton(
'view', $this->
lng->txt(
'cancel'));
262 $this->tabs_gui->setTabActive(self::TAB_SETTINGS);
271 $val[
"suffix_repl_additional"] = implode(
", ", $this->file_service_settings->getWhiteListNegative());
272 $val[
"suffix_custom_white_list"] = implode(
", ", $this->file_service_settings->getWhiteListPositive());
273 $val[
"suffix_custom_expl_black"] = implode(
", ", $this->file_service_settings->getProhibited());
274 $form->setValuesByArray($val);
277 $this->tpl->setContent($form->getHTML());
286 if ($form->checkInput()) {
287 $trafo = (fn(
string $id): ?
string => $this->
http->post()->has($id)
288 ? $this->
http->post()->retrieve($id, $this->
refinery->to()->string())
292 $this->
settings->set(
"suffix_repl_additional", $trafo(
"suffix_repl_additional"));
293 $this->
settings->set(
"suffix_custom_white_list", $trafo(
"suffix_custom_white_list"));
294 $this->
settings->set(
"suffix_custom_expl_black", $trafo(
"suffix_custom_expl_black"));
296 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
297 $this->
ctrl->redirect($this, self::CMD_EDIT_SETTINGS);
299 $form->setValuesByPost();
300 $this->tpl->setContent($form->getHTML());
checkPermissionOrFail(string $str)
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)
ilGlobalTemplateInterface $tpl
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
hasUserPermissionTo(string $str)
static http()
Fetches the global http state from ILIAS.
Class ilObjFileServicesGUI.
ilErrorHandling $error_handling
executeCommand()
Execute command public.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
__construct(int $id=0, int $id_type=self::REPOSITORY_NODE_ID, int $parent_node_id=0)
Constructor public.
ilFileServicesSettings $file_service_settings