46 public function __construct($a_data, $a_id, $a_call_by_reference)
53 $this->tabs = $DIC[
'ilTabs'];
54 $this->lng = $DIC->language();
55 $this->lng->loadLanguageModule(
'adn');
56 $this->ctrl = $DIC[
'ilCtrl'];
57 $this->tpl = $DIC[
'tpl'];
58 $this->tree = $DIC[
'tree'];
60 $this->rbacsystem = $DIC[
'rbacsystem'];
61 $this->error_handling = $DIC[
"ilErr"];
70 $this->error_handling->raiseError(
71 $this->lng->txt(
'no_permission'),
72 $this->error_handling->error_obj->MESSAGE
79 return $this->access->checkAccess($str,
'', $this->object->getRefId());
88 $this->lng->loadLanguageModule(
"fils");
90 $next_class = $this->ctrl->getNextClass($this);
91 $cmd = $this->ctrl->getCmd();
96 switch ($next_class) {
97 case 'ilpermissiongui':
98 $this->tabs_gui->setTabActive(
'perm_settings');
100 $this->ctrl->forwardCommand($perm_gui);
103 if (!$cmd || $cmd ===
'view') {
104 $cmd = self::CMD_EDIT_SETTINGS;
121 if (
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
122 $this->tabs_gui->addTarget(
124 $this->ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS),
125 array(self::CMD_EDIT_SETTINGS,
"view")
128 if (
$rbacsystem->checkAccess(
'edit_permission', $this->object->getRefId())) {
129 $this->tabs_gui->addTarget(
131 $this->ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm"),
143 parent::setTitleAndDescription();
144 $this->tpl->setDescription($this->object->getDescription());
155 $form->setFormAction($this->ctrl->getFormAction($this));
156 $form->setTitle($this->lng->txt(
"settings"));
161 $ne->setInfo($this->lng->txt(
"file_suffix_default_positive_info"));
166 "file_suffix_custom_negative"),
167 "suffix_repl_additional" 169 $ta->
setInfo($this->lng->txt(
"file_suffix_custom_negative_info"));
171 $ta->setDisabled(!$permission_to_write);
176 "file_suffix_custom_positive"),
177 "suffix_custom_white_list" 179 $ta->
setInfo($this->lng->txt(
"file_suffix_custom_positive_info"));
181 $ta->setDisabled(!$permission_to_write);
187 $ne->setInfo($this->lng->txt(
"file_suffix_overall_positive_info"));
192 $this->lng->txt(
"file_suffix_custom_expl_negative"),
193 "suffix_custom_expl_black" 195 $ta->
setInfo($this->lng->txt(
"file_suffix_custom_expl_negative_info"));
197 $ta->setDisabled(!$permission_to_write);
201 if ($permission_to_write) {
202 $form->addCommandButton(
'saveSettings', $this->lng->txt(
'save'));
203 $form->addCommandButton(
'view', $this->lng->txt(
'cancel'));
214 $this->tabs_gui->setTabActive(
'settings');
223 $val[
"suffix_repl_additional"] = $this->
settings->get(
"suffix_repl_additional");
224 $val[
"suffix_custom_white_list"] = $this->
settings->get(
"suffix_custom_white_list");
225 $val[
"suffix_custom_expl_black"] = $this->
settings->get(
"suffix_custom_expl_black");
226 $form->setValuesByArray($val);
229 $this->tpl->setContent($form->getHTML());
241 if ($form->checkInput()) {
242 $this->
settings->set(
"suffix_repl_additional",
$_POST[
"suffix_repl_additional"]);
243 $this->
settings->set(
"suffix_custom_white_list",
$_POST[
"suffix_custom_white_list"]);
244 $this->
settings->set(
"suffix_custom_expl_black",
$_POST[
"suffix_custom_expl_black"]);
246 ilUtil::sendSuccess($this->lng->txt(
'settings_saved'),
true);
247 $this->ctrl->redirect($this, self::CMD_EDIT_SETTINGS);
249 $form->setValuesByPost();
250 $this->tpl->setContent($form->getHTML());
setValue($a_value)
Set Value.
checkPermissionOrFail(string $str)
static getDefaultValidExtensionWhiteList()
Valid extensions.
prepareOutput($a_show_subobjects=true)
prepare output
Class ilObjFileServicesGUI.
__construct($a_data, $a_id, $a_call_by_reference)
Constructor public.
executeCommand()
Execute command public.
Class ilObjectGUI Basic methods of all Output classes.
initSettingsForm()
Initializes the settings form.
static getValidExtensions()
Valid extensions.
hasUserPermissionTo($str)
This class represents a non editable value in a property form.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
saveSettings()
Save settings.
setTitleAndDescription()
called by prepare output
editSettings()
Edit settings.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.