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(
"note");
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")
151 $tabs->activateTab(
"settings");
169 $fields[
"enable_notes"] =
$f->input()->field()->checkbox(
$lng->txt(
"note_enable_notes"))
170 ->withValue(!(
$setting->get(
"disable_notes")));
173 $section1 =
$f->input()->field()->section($fields,
$lng->txt(
"settings"));
175 $form_action =
$ctrl->getLinkTarget($this,
"saveSettings");
176 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
190 if (
$request->getMethod() ==
"POST") {
191 $form = $form->withRequest(
$request);
192 $data = $form->getData();
193 if (is_array(
$data[
"sec"])) {
194 $setting->set(
"disable_notes", (
int) (
$data[
"sec"][
"enable_notes"] ? 0 : 1));
198 $ctrl->redirect($this,
"editSettings");
initForm()
Init settings form.
editSettings()
Edit settings.
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Contructor.
saveSettings()
Save settings.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
prepareOutput($a_show_subobjects=true)
prepare output
Class ilObjectGUI Basic methods of all Output classes.
__construct(Container $dic, ilPlugin $plugin)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
executeCommand()
Execute command.