35 $main_tpl = $DIC->ui()->mainTemplate();
37 $this->
ctrl = $DIC->ctrl();
38 $this->
lng = $DIC->language();
39 $this->
lng->loadLanguageModule(
'orgu');
40 $this->tpl = $DIC->ui()->mainTemplate();
43 $main_tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
44 $this->
ctrl->redirectByClass(ilObjOrgUnitGUI::class);
50 $cmd = $this->
ctrl->getCmd(
'settings');
51 $next_class = $this->
ctrl->getNextClass($this);
53 switch ($next_class) {
65 $this->tpl->setContent($form->getHTML());
73 $form->setFormAction($this->
ctrl->getFormAction($this,
'saveSettings'));
77 $section->setTitle($this->
lng->txt(
'orgu_enable_my_staff'));
78 $form->addItem($section);
81 $item->
setInfo($this->
lng->txt(
"orgu_enable_my_staff_info"));
83 $item->setChecked(($DIC->settings()->get(
"enable_my_staff") ? true :
false));
84 $form->addItem($item);
88 $section->setTitle($this->
lng->txt(
'orgu_global_set_positions'));
89 $form->addItem($section);
91 $objDefinition = $DIC[
'objDefinition'];
92 $available_types = $objDefinition->getOrgUnitPermissionTypes();
93 foreach ($available_types as $object_type) {
97 if ($objDefinition->isPlugin($object_type)) {
101 $lang_prefix = $is_multi ?
'objs_' :
'obj_';
102 $label = $this->
lng->txt($lang_prefix . $object_type);
106 $this->
lng->txt(
'orgu_global_set_positions_type_active') .
' ' . $label,
107 $object_type .
'_active' 110 $type->setChecked($setting->isActive());
113 $this->
lng->txt(
'orgu_global_set_type_changeable'),
114 $object_type .
'_changeable' 116 $scope->setValue((
int) $setting->isChangeableForObject());
119 $this->
lng->txt(
'orgu_global_set_type_changeable_object'),
123 $this->
lng->txt(
'orgu_global_set_type_default'),
124 $object_type .
'_default' 126 $default->
setInfo($this->
lng->txt(
'orgu_global_set_type_default_info'));
128 $default->setChecked($setting->getActivationDefault());
131 $scope->addOption($scope_object);
134 $this->
lng->txt(
'orgu_global_set_type_changeable_no'),
137 $scope->addOption($scope_global);
141 $form->addItem(
$type);
143 $form->addCommandButton(
'saveSettings', $this->
lng->txt(
'save'));
151 $objDefinition = $DIC[
'objDefinition'];
153 if ($form->checkInput()) {
155 $available_types = $objDefinition->getOrgUnitPermissionTypes();
156 foreach ($available_types as $object_type) {
158 $obj_setting->setActive((
bool) $form->getInput($object_type .
'_active'));
159 $obj_setting->setActivationDefault((
int) $form->getInput($object_type .
'_default'));
160 $obj_setting->setChangeableForObject((
bool) $form->getInput($object_type
162 $obj_setting->update();
166 $DIC->settings()->set(
"enable_my_staff", (
int) $form->getInput(
'enable_my_staff'));
168 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
169 $this->
ctrl->redirect($this,
'settings');
171 $form->setValuesByPost();
172 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'),
false);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _checkAccessSettings(int $ref_id)
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setValue(string $a_value)
static lookupTxtById(string $plugin_id, string $lang_var)
settings(ilPropertyFormGUI $form=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...