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 $subfields[
"comm_del_user"] =
$f->input()->field()->checkbox(
170 $lng->txt(
"note_enable_comments_del_user")
172 ->withValue((
bool)
$setting->get(
"comments_del_user", 0));
173 $subfields[
"comm_del_tutor"] =
$f->input()->field()->checkbox(
174 $lng->txt(
"note_enable_comments_del_tutor"),
175 $lng->txt(
"note_enable_comments_del_tutor_info")
177 ->withValue((
bool)
$setting->get(
"comments_del_tutor", 1));
178 $subfields[
"comments_noti_recip"] =
$f->input()->field()->text(
179 $lng->txt(
"note_comments_notification"),
180 $lng->txt(
"note_comments_notification_info")
182 ->withValue((
string)
$setting->get(
"comments_noti_recip"));
184 $fields[
"enable_comments"] =
$f->input()->field()->optionalGroup(
186 $lng->txt(
"note_enable_comments"),
189 if (
$setting->get(
"disable_comments")) {
190 $fields[
"enable_comments"] = $fields[
"enable_comments"]->withValue(null);
194 $section1 =
$f->input()->field()->section($fields,
$lng->txt(
"settings"));
196 $form_action =
$ctrl->getLinkTarget($this,
"saveSettings");
197 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
211 if (
$request->getMethod() ==
"POST") {
212 $form = $form->withRequest(
$request);
213 $data = $form->getData();
214 if (is_array(
$data[
"sec"])) {
216 $setting->set(
"disable_comments", (is_array(
$data) ? 0 : 1));
217 $setting->set(
"comments_del_user", (
$data[
"comm_del_user"] ? 1 : 0));
218 $setting->set(
"comments_del_tutor", (
$data[
"comm_del_tutor"] ? 1 : 0));
219 $setting->set(
"comments_noti_recip",
$data[
"comments_noti_recip"]);
224 $ctrl->redirect($this,
"editSettings");
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.