57 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
61 $this->lng = $DIC->language();
62 $this->rbacsystem = $DIC->rbac()->system();
63 $this->error = $DIC[
"ilErr"];
64 $this->ctrl = $DIC->ctrl();
65 $this->request = $DIC->http()->request();
66 $this->tabs = $DIC->tabs();
67 $this->
ui = $DIC->ui();
68 $this->setting = $DIC->settings();
69 $this->main_tpl = $DIC->ui()->mainTemplate();
75 $this->lng->loadLanguageModule(
"pwsp");
88 $next_class =
$ctrl->getNextClass($this);
89 $cmd =
$ctrl->getCmd(
"editSettings");
91 if (!
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
92 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
97 switch ($next_class) {
98 case 'ilpermissiongui':
99 $tabs->activateTab(
'perm_settings');
101 $ctrl->forwardCommand($perm_gui);
105 if ($cmd ==
"view") {
106 $cmd =
"editSettings";
108 if (in_array($cmd, [
"editSettings",
"saveSettings"])) {
125 if (
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
128 $lng->txt(
"settings"),
129 $ctrl->getLinkTarget($this,
"editSettings")
133 if (
$rbacsystem->checkAccess(
'edit_permission', $this->object->getRefId())) {
136 $lng->txt(
"perm_settings"),
137 $ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm")
152 $tabs->activateTab(
"settings");
154 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
156 $form->setFormAction($ilCtrl->getFormAction($this,
"saveWsp"));
157 $form->setTitle(
$lng->txt(
"obj_prss"));
162 $wsp_prop->setChecked((
$ilSetting->get(
'disable_personal_workspace') ?
'0' :
'1'));
163 $form->addItem($wsp_prop);
168 $blog_prop->setChecked((
$ilSetting->get(
'disable_wsp_blogs') ?
'0' :
'1'));
169 $wsp_prop->addSubItem($blog_prop);
174 $file_prop->setChecked((
$ilSetting->get(
'disable_wsp_files') ?
'0' :
'1'));
175 $wsp_prop->addSubItem($file_prop);
180 $link_prop->setChecked((
$ilSetting->get(
'disable_wsp_links') ?
'0' :
'1'));
181 $wsp_prop->addSubItem($link_prop);
183 if ($this->rbacsystem->checkAccess(
'write', $this->object->getRefId())) {
185 $form->addCommandButton(
"saveSettings",
$lng->txt(
"save"));
186 $form->addCommandButton(
"editSettings",
$lng->txt(
"cancel"));
189 $this->tpl->setContent($form->getHTML());
201 if (!$ilAccess->checkAccess(
'write',
'', $this->object->getRefId())) {
202 $ilCtrl->redirect($this,
"view");
212 $ilSetting->set(
'disable_personal_workspace', (
int) (
$_POST[
'wsp'] ? 0 : 1));
218 ilUtil::sendSuccess($this->lng->txt(
"settings_saved"),
true);
219 $ilCtrl->redirect($this,
"editSettings");
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Contructor.
saveSettings()
Save personal desktop settings.
Personal Workspace Settings.
prepareOutput($a_show_subobjects=true)
prepare output
Class ilObjectGUI Basic methods of all Output classes.
editSettings()
Edit personal workspace settings.
__construct(Container $dic, ilPlugin $plugin)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
executeCommand()
Execute command.