3 declare(strict_types=1);
38 $this->
lng->loadLanguageModule(
'prg');
45 if (!$this->rbac_system->checkAccess(
"visible,read", $this->object->getRefId())) {
46 $this->error->raiseError($this->
lng->txt(
"no_permission"), $this->error->WARNING);
48 $next_class = $this->
ctrl->getNextClass($this);
49 $cmd = $this->
ctrl->getCmd();
51 switch ($next_class) {
52 case 'ilpermissiongui':
53 $this->tabs_gui->activateTab(
'perm_settings');
55 $this->
ctrl->forwardCommand($perm_gui);
57 case 'ilstudyprogrammetypegui':
58 $this->tabs_gui->activateTab(
'prg_subtypes');
59 $this->type_gui->setParentGUI($this);
60 $this->
ctrl->forwardCommand($this->type_gui);
63 if (!$cmd || $cmd ===
"view") {
64 $cmd =
"editSettings";
73 $this->tabs_gui->activateTab(
'settings');
77 $this->tpl->setContent($form->getHTML());
84 $form->setFormAction($this->
ctrl->getFormAction($this,
"saveSettings"));
85 $form->setTitle($this->
lng->txt(
"settings"));
89 $this->
lng->txt(
"prg_show_programmes_on_pd_always"),
93 $this->
lng->txt(
"prg_show_programmes_on_pd_only_read"),
98 $radio_grp->setValue($value);
99 $form->addItem($radio_grp);
101 if ($this->
access->checkAccess(
"write",
"", $this->object->getRefId())) {
102 $form->addCommandButton(
"saveSettings", $this->
lng->txt(
"save"));
103 $form->addCommandButton(
"view", $this->
lng->txt(
"cancel"));
114 if ($form->checkInput()) {
115 if ($this->
save($form)) {
118 $form->getInput(
'visible_on_personal_desktop')
121 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"settings_saved"),
true);
122 $this->
ctrl->redirect($this,
"editSettings");
126 $form->setValuesByPost();
132 if ($this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
133 $this->tabs_gui->addTarget(
135 $this->
ctrl->getLinkTargetByClass(
'ilObjStudyProgrammeAdminGUI',
'view')
138 $this->tabs_gui->addTarget(
140 $this->
ctrl->getLinkTargetByClass(
141 array(
'ilObjStudyProgrammeAdminGUI',
'ilStudyProgrammeTypeGUI'),
146 if ($this->rbac_system->checkAccess(
'edit_permission', $this->object->getRefId())) {
147 $this->tabs_gui->addTarget(
149 $this->
ctrl->getLinkTargetByClass(
'ilpermissiongui',
'perm'),
158 $this->
ctrl->setTargetScript(
'ilias.php');
159 $this->
ctrl->setParameterByClass(
"ilObjStudyProgrammeAdminGUI",
"ref_id",
$ref_id);
160 $this->
ctrl->setParameterByClass(
"ilObjStudyProgrammeAdminGUI",
"admin_mode",
"settings");
161 $this->
ctrl->redirectByClass(array(
"ilAdministrationGUI",
"ilObjStudyProgrammeAdminGUI"),
"view");
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
save(ilPropertyFormGUI $form)
const SETTING_VISIBLE_ON_PD_ALLWAYS
__construct($data, int $id, bool $call_by_reference=true, bool $prepare_output=true)
prepareOutput(bool $show_sub_objects=true)
ilStudyProgrammeTypeGUI $type_gui
const SETTING_VISIBLE_ON_PD_READ
Class ilObjectGUI Basic methods of all Output classes.
const SETTING_VISIBLE_ON_PD
Error Handling & global info handling uses PEAR error class.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
editSettings(ilPropertyFormGUI $form=null)
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)