19 declare(strict_types=1);
51 bool $a_call_by_reference =
true,
52 bool $a_prepare_output =
true 56 $this->
ctrl = $DIC->ctrl();
57 $this->error = $DIC[
"ilErr"];
58 $this->
access = $DIC->access();
59 $this->
tabs = $DIC->tabs();
60 $this->
lng = $DIC->language();
62 $this->tpl = $DIC[
"tpl"];
63 $this->
toolbar = $DIC->toolbar();
64 $this->
user = $DIC->user();
65 $this->ui_fac = $DIC->ui()->factory();
66 $this->ui_ren = $DIC->ui()->renderer();
67 $ilCtrl = $DIC->ctrl();
72 $this->
lng->loadLanguageModule(
'skmg');
74 $ilCtrl->saveParameter($this,
"node_id");
75 $this->skill_manager = $DIC->skills()->internal()->manager();
76 $this->management_access_manager = $this->skill_manager->getManagementAccessManager($this->
object->getRefId());
84 $next_class = $this->
ctrl->getNextClass($this);
85 $cmd = $this->
ctrl->getCmd();
87 if (!$this->management_access_manager->hasReadManagementPermission()) {
91 switch ($next_class) {
92 case "ilskilltreeadmingui":
94 $ilTabs->activateTab(
"skill_trees");
96 $this->
ctrl->forwardCommand($gui);
99 case 'ilpermissiongui':
101 $this->tabs_gui->activateTab(
'permissions');
103 $ret = $this->
ctrl->forwardCommand($perm_gui);
108 if (!$cmd || $cmd ==
'view') {
123 if ($this->management_access_manager->hasReadManagementPermission()) {
124 $this->tabs_gui->addTab(
127 $this->
ctrl->getLinkTargetByClass(
"ilskilltreeadmingui",
"")
130 $this->tabs_gui->addTab(
133 $this->
ctrl->getLinkTarget($this,
"editSettings")
137 if ($this->management_access_manager->hasEditManagementPermissionsPermission()) {
138 $this->tabs_gui->addTab(
141 $this->
ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm")
157 $check_enable = $this->ui_fac->input()->field()->checkbox(
$lng->
txt(
"skmg_enable_skmg"))
161 $check_hide_prof = $this->ui_fac->input()->field()->checkbox(
162 $lng->
txt(
"skmg_hide_profile_self_eval"),
163 $lng->
txt(
"skmg_hide_profile_self_eval_info")
164 )->
withValue($skmg_set->getHideProfileBeforeSelfEval());
167 $check_loc_ass_prof = $this->ui_fac->input()->field()->checkbox(
$lng->
txt(
"skmg_local_assignment_profiles"))
168 ->
withValue($skmg_set->getLocalAssignmentOfProfiles());
171 $check_create_loc_prof = $this->ui_fac->input()->field()->checkbox(
172 $lng->
txt(
"skmg_allow_local_profiles"),
173 $lng->
txt(
"skmg_allow_local_profiles_info")
174 )->
withValue($skmg_set->getAllowLocalProfiles());
177 $section_settings = $this->ui_fac->input()->field()->section(
178 [
"check_enable" => $check_enable,
179 "check_hide_prof" => $check_hide_prof,
180 "check_loc_ass_prof" => $check_loc_ass_prof,
181 "check_create_loc_prof" => $check_create_loc_prof],
186 $ilCtrl->setParameterByClass(
187 'ilobjskillmanagementgui',
189 'skill_settings_config' 192 $form = $this->ui_fac->input()->container()->form()->standard(
193 $ilCtrl->getFormAction($this,
"editSettings"),
194 [
"section_settings" => $section_settings]
197 if ($this->request->getMethod() ==
"POST" 198 && $this->request->getQueryParams()[
"skill_settings"] ==
"skill_settings_config") {
199 if (!$this->management_access_manager->hasEditManagementSettingsPermission()) {
203 $form = $form->withRequest($this->request);
204 $result = $form->getData();
206 $skmg_set->activate($result[
"section_settings"][
"check_enable"]);
207 $skmg_set->setHideProfileBeforeSelfEval($result[
"section_settings"][
"check_hide_prof"]);
208 $skmg_set->setLocalAssignmentOfProfiles($result[
"section_settings"][
"check_loc_ass_prof"]);
209 $skmg_set->setAllowLocalProfiles($result[
"section_settings"][
"check_create_loc_prof"]);
211 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
212 $ilCtrl->redirect($this,
"editSettings");
215 $this->tpl->setContent($this->ui_ren->render([$form]));
220 $this->
ctrl->clearParameterByClass(get_class($this),
"node_id");
221 $this->
ctrl->redirectByClass(
"ilskilltreeadmingui",
"listTrees");
__construct( $a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
Skill tree administration.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Skill management settings.
prepareOutput(bool $show_sub_objects=true)
SkillManagementAccess $management_access_manager
SkillInternalManagerService $skill_manager
Skill internal manager service.
This is how the factory for UI elements looks.
Class ilObjectGUI Basic methods of all Output classes.
activateTab(string $a_id)
__construct(Container $dic, ilPlugin $plugin)
Skill management main GUI class.