4 include_once
"./Services/Object/classes/class.ilObjectGUI.php" ;
18 public function __construct($a_data, $a_id, $a_call_by_reference =
true, $a_prepare_output =
true)
23 $this->lng->loadLanguageModule(
"webr");
28 $next_class = $this->ctrl->getNextClass($this);
29 $cmd = $this->ctrl->getCmd();
33 if (!$this->rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
34 $this->ilErr->raiseError($this->lng->txt(
"no_permission"), $this->ilErr->WARNING);
37 switch ($next_class) {
38 case 'ilpermissiongui':
39 $this->tabs_gui->setTabActive(
"perm_settings");
40 include_once
"Services/AccessControl/classes/class.ilPermissionGUI.php";
42 $this->ctrl->forwardCommand($perm_gui);
46 if (!$cmd || $cmd ==
"view") {
47 $cmd =
"editSettings";
61 if (
$rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
62 $this->tabs_gui->addTarget(
64 $this->ctrl->getLinkTarget($this,
"editSettings"),
65 array(
"editSettings",
"view")
69 if (
$rbacsystem->checkAccess(
"edit_permission", $this->object->getRefId())) {
70 $this->tabs_gui->addTarget(
72 $this->ctrl->getLinkTargetByClass(
"ilpermissiongui",
"perm"),
81 $this->tabs_gui->setTabActive(
'settings');
86 $this->tpl->setContent($a_form->getHTML());
99 if ($form->checkInput()) {
100 $ilSetting->set(
"links_dynamic", $form->getInput(
"links_dynamic"));
102 ilUtil::sendSuccess($this->lng->txt(
"settings_saved"),
true);
103 $this->ctrl->redirect($this,
"editSettings");
106 $form->setValuesByPost();
115 $ilAccess = $DIC[
'ilAccess'];
117 include_once
"Services/Form/classes/class.ilPropertyFormGUI.php";
119 $form->setFormAction($this->ctrl->getFormAction($this,
"saveSettings"));
120 $form->setTitle($this->lng->txt(
"settings"));
124 $cb->
setInfo($this->lng->txt(
"links_dynamic_info"));
125 $cb->setChecked(
$ilSetting->get(
"links_dynamic"));
128 if ($ilAccess->checkAccess(
"write",
'', $this->object->getRefId())) {
129 $form->addCommandButton(
"saveSettings", $this->lng->txt(
"save"));
130 $form->addCommandButton(
"view", $this->lng->txt(
"cancel"));
Web Resource Administration Settings.
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
prepareOutput($a_show_subobjects=true)
prepare output
Class ilObjectGUI Basic methods of all Output classes.
__construct(Container $dic, ilPlugin $plugin)
checkPermission($a_perm, $a_cmd="", $a_type="", $a_ref_id=null)
Check permission and redirect on error.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
editSettings(ilObjPropertyFormGUI $a_form=null)