49 $main_tpl = $DIC->ui()->mainTemplate();
51 $this->
ctrl = $DIC->ctrl();
52 $this->
lng = $DIC->language();
53 $this->
lng->loadLanguageModule(
'orgu');
54 $this->tpl = $DIC->ui()->mainTemplate();
55 $this->request = $DIC->http()->request();
56 $to_int = $DIC[
'refinery']->kindlyTo()->int();
57 $ref_id = $DIC[
'http']->wrapper()->query()->retrieve(
'ref_id', $to_int);
60 $main_tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
61 $this->
ctrl->redirectByClass(ilObjOrgUnitGUI::class);
65 $this->object_definition = $DIC[
"objDefinition"];
66 $this->ui_factory = $DIC[
'ui.factory'];
67 $this->ui_renderer = $DIC[
'ui.renderer'];
73 $cmd = $this->
ctrl->getCmd(self::CMD_EDIT);
74 $next_class = $this->
ctrl->getNextClass($this);
76 switch ($next_class) {
89 private function edit(): void
92 $this->tpl->setContent(
93 $this->ui_renderer->render($form)
97 private function save(): void
100 $data = $form->getData();
103 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'),
false);
104 $this->tpl->setContent($this->ui_renderer->render($form));
106 $enable_my_staff = current(array_shift(
$data));
107 $obj_settings = array_shift(
$data);
109 $this->
settings->set(
"enable_my_staff", $enable_my_staff);
111 $available_types = $this->object_definition->getOrgUnitPermissionTypes();
112 foreach ($available_types as $object_type) {
117 if (!is_null($obj_settings[$object_type])) {
118 list($active, $changeable, $default) = array_shift($obj_settings[$object_type]);
121 $obj_setting->setActive($active);
122 $obj_setting->setChangeableForObject($changeable);
123 $obj_setting->setActivationDefault((
int) $default);
124 $obj_setting->update();
126 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
127 $this->
ctrl->redirect($this, self::CMD_EDIT);
133 $sections[] = $this->ui_factory->input()->field()->section(
135 $this->ui_factory->input()->field()->checkbox(
136 $this->
lng->txt(
"orgu_enable_my_staff"),
137 $this->
lng->txt(
"orgu_enable_my_staff_info")
141 $this->
lng->txt(
"orgu_enable_my_staff")
146 $available_types = $this->object_definition->getOrgUnitPermissionTypes();
147 foreach ($available_types as $object_type) {
152 if ($this->object_definition->isPlugin($object_type)) {
155 $is_multi = !$this->object_definition->isSystemObject($object_type)
157 $lang_prefix = $is_multi ?
'objs_' :
'obj_';
158 $label = $this->
lng->txt($lang_prefix . $object_type);
163 $changeable[] = $this->ui_factory->input()->field()->switchableGroup(
165 $this->ui_factory->input()->field()->group(
167 $this->ui_factory->input()->field()->checkbox(
168 $this->
lng->txt(
'orgu_global_set_type_default'),
169 $this->
lng->txt(
'orgu_global_set_type_default_info'),
171 ->
withValue((
bool) $setting->getActivationDefault())
173 $this->
lng->txt(
'orgu_global_set_type_changeable_object'),
176 $this->ui_factory->input()->field()->group(
180 $this->
lng->txt(
'orgu_global_set_type_changeable_no'),
183 $this->
lng->txt(
'orgu_global_set_type_changeable')
186 $setting->isChangeableForObject() ? 0 : 1
189 $this->
refinery->custom()->transformation(
192 $changeable = !(bool) array_shift($v);
195 $default = (bool) current(array_shift($v));
197 return [$active, $changeable, $default];
202 $changeable[] = $this->ui_factory->input()->field()->hidden()->withValue(
'true')
203 ->withAdditionalTransformation(
204 $this->
refinery->custom()->transformation(
205 fn($v) => [
true,
false,
false]
210 $groups[$object_type] = $this->ui_factory->input()->field()->optionalGroup(
212 $this->
lng->txt(
'orgu_global_set_positions_type_active') .
' ' . $label
215 if (!$setting->isActive()) {
216 $groups[$object_type] = $groups[$object_type]->withValue(
null);
220 $sections[] = $this->ui_factory->input()->field()->section(
222 $this->
lng->txt(
"orgu_global_set_positions")
225 $form_action = $this->
ctrl->getFormAction($this, self::CMD_SAVE);
226 return $this->ui_factory->input()->container()->form()->standard(
static _checkAccessSettings(int $ref_id)
ilGlobalTemplateInterface $tpl
Global orgunit settings GUI.
ilObjectDefinition $object_definition
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static lookupTxtById(string $plugin_id, string $lang_var)
ServerRequestInterface $request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...