38 $this->ctrl = $DIC->ctrl();
39 $this->tpl = $DIC->ui()->mainTemplate();
40 $this->lng = $DIC->language();
42 $this->tabs = $DIC->tabs();
43 $this->access = $DIC->access();
44 $this->tree = $DIC->repositoryTree();
45 $this->obj_service = $DIC->object();
53 $cmd = $this->ctrl->getCmd();
55 case method_exists($this, $cmd):
61 $this->ctrl->redirect($this->parent_obj);
72 $this->tabs->activateSubTab(
"basic_settings");
73 $a_form->setTitle($this->lng->txt(
'frm_settings_form_header'));
76 $presentationHeader->setTitle($this->lng->txt(
'frm_settings_presentation_header'));
77 $a_form->addItem($presentationHeader);
79 $this->obj_service->commonSettings()->legacyForm($a_form, $this->parent_obj->object)->addTileImage();
84 $this->lng->txt(
'sort_by_date') .
' (' . $this->lng->txt(
'descending_order') .
')',
88 $this->lng->txt(
'sort_by_date') .
' (' . $this->lng->txt(
'ascending_order') .
')',
91 $rg_pro->addOption($view_desc);
92 $rg_pro->addOption($view_asc);
93 $a_form->addItem($rg_pro);
95 $userFunctionsHeader = new \ilFormSectionHeaderGUI();
96 $userFunctionsHeader->setTitle($this->lng->txt(
'frm_settings_user_functions_header'));
97 $a_form->addItem($userFunctionsHeader);
99 $frm_subject =
new ilRadioGroupInputGUI($this->lng->txt(
'frm_subject_setting'),
'subject_setting');
101 $frm_subject->addOption(
new ilRadioOption($this->lng->txt(
'add_re_to_subject'),
'add_re_to_subject'));
102 $frm_subject->addOption(
new ilRadioOption($this->lng->txt(
'empty_subject'),
'empty_subject'));
103 $a_form->addItem($frm_subject);
105 $cb_prop =
new ilCheckboxInputGUI($this->lng->txt(
'enable_thread_ratings'),
'thread_rating');
107 $cb_prop->setInfo($this->lng->txt(
'enable_thread_ratings_info'));
108 $a_form->addItem($cb_prop);
111 $frm_upload =
new ilCheckboxInputGUI($this->lng->txt(
'file_upload_allowed'),
'file_upload_allowed');
113 $frm_upload->setInfo($this->lng->txt(
'allow_file_upload_desc'));
114 $a_form->addItem($frm_upload);
117 $moderatorFunctionsHeader = new \ilFormSectionHeaderGUI();
118 $moderatorFunctionsHeader->setTitle($this->lng->txt(
'frm_settings_mod_functions_header'));
119 $a_form->addItem($moderatorFunctionsHeader);
121 $cb_prop =
new ilCheckboxInputGUI($this->lng->txt(
'activate_new_posts'),
'post_activation');
123 $cb_prop->setInfo($this->lng->txt(
'post_activation_desc'));
124 $a_form->addItem($cb_prop);
126 $cb_prop =
new ilCheckboxInputGUI($this->lng->txt(
'mark_moderator_posts'),
'mark_mod_posts');
128 $cb_prop->setInfo($this->lng->txt(
'mark_moderator_posts_desc'));
129 $a_form->addItem($cb_prop);
132 $stickyThreadSorting =
new ilRadioGroupInputGUI($this->lng->txt(
'sorting_manual_sticky'),
'thread_sorting');
133 $latestAtTop =
new ilRadioOption($this->lng->txt(
'frm_sticky_threads_latest_at_top'), 0);
134 $latestAtTop->
setInfo($this->lng->txt(
'frm_sticky_threads_latest_at_top_info'));
136 $stickyThreadSorting->addOption($latestAtTop);
137 $manualSorting =
new ilRadioOption($this->lng->txt(
'frm_sticky_threads_manual_sorting'), 1);
138 $manualSorting->
setInfo($this->lng->txt(
'frm_sticky_threads_manual_sorting_info'));
139 $stickyThreadSorting->addOption($manualSorting);
140 $a_form->addItem($stickyThreadSorting);
142 if ($this->
settings->get(
'enable_anonymous_fora') || $this->
settings->get(
'enable_fora_statistics',
false)) {
143 $privacyHeader = new \ilFormSectionHeaderGUI();
144 $privacyHeader->setTitle($this->lng->txt(
'frm_settings_privacy_header'));
145 $a_form->addItem($privacyHeader);
148 if ($this->
settings->get(
'enable_fora_statistics',
false)) {
149 $cb_prop =
new ilCheckboxInputGUI($this->lng->txt(
'frm_statistics_enabled'),
'statistics_enabled');
151 $cb_prop->setInfo($this->lng->txt(
'frm_statistics_enabled_desc'));
152 $a_form->addItem($cb_prop);
155 if ($this->
settings->get(
'enable_anonymous_fora') || $this->parent_obj->objProperties->isAnonymized()) {
156 $cb_prop =
new ilCheckboxInputGUI($this->lng->txt(
'frm_anonymous_posting'),
'anonymized');
158 $cb_prop->setInfo($this->lng->txt(
'frm_anonymous_posting_desc'));
159 $a_form->addItem($cb_prop);
168 $this->tabs->activateTab(
'settings');
169 $this->tabs->addSubTabTarget(
171 $this->ctrl->getLinkTarget($this->parent_obj,
'edit'),
173 [strtolower(ilObjForumGUI::class)]
176 if ($this->
settings->get(
'forum_notification') > 0) {
178 $grp_ref_id = $this->tree->checkForParentType($this->parent_obj->ref_id,
'grp');
179 $crs_ref_id = $this->tree->checkForParentType($this->parent_obj->ref_id,
'crs');
181 if ((
int) $grp_ref_id > 0 || (
int) $crs_ref_id > 0) {
182 #show member-tab for notification if forum-notification is enabled in administration 183 if ($this->access->checkAccess(
'write',
'', $this->parent_obj->ref_id)) {
184 $mem_active = array(
'showMembers',
'forums_notification_settings');
185 (in_array(
$_GET[
'cmd'], $mem_active)) ? $force_mem_active =
true : $force_mem_active =
false;
187 $this->tabs->addSubTabTarget(
189 $this->ctrl->getLinkTarget($this,
'showMembers'),
191 [strtolower(self::class)],
199 $this->lng->loadLanguageModule(
'cont');
200 $this->tabs->addSubTabTarget(
201 'cont_news_settings',
202 $this->ctrl->getLinkTargetByClass(ilContainerNewsSettingsGUI::class),
204 [strtolower(ilContainerNewsSettingsGUI::class)]
215 $a_values[
'anonymized'] = $this->parent_obj->objProperties->isAnonymized();
216 $a_values[
'statistics_enabled'] = $this->parent_obj->objProperties->isStatisticEnabled();
217 $a_values[
'post_activation'] = $this->parent_obj->objProperties->isPostActivationEnabled();
218 $a_values[
'subject_setting'] = $this->parent_obj->objProperties->getSubjectSetting();
219 $a_values[
'mark_mod_posts'] = $this->parent_obj->objProperties->getMarkModeratorPosts();
220 $a_values[
'thread_sorting'] = $this->parent_obj->objProperties->getThreadSorting();
221 $a_values[
'thread_rating'] = $this->parent_obj->objProperties->isIsThreadRatingEnabled();
223 if (in_array((
int)$this->parent_obj->objProperties->getDefaultView(), array(
228 $default_view = (int)$this->parent_obj->objProperties->getDefaultView();
233 $a_values[
'default_view'] = $default_view;
234 $a_values[
'file_upload_allowed'] = (bool) $this->parent_obj->objProperties->getFileUploadAllowed();
242 if (in_array((
int) $a_form->
getInput(
'default_view'), array(
247 $default_view = (int) $a_form->
getInput(
'default_view');
251 $this->parent_obj->objProperties->setDefaultView($default_view);
258 if ($this->
settings->get(
'enable_anonymous_fora') || $this->parent_obj->objProperties->isAnonymized()) {
259 $this->parent_obj->objProperties->setAnonymisation((
int) $a_form->
getInput(
'anonymized'));
261 if ($this->
settings->get(
'enable_fora_statistics',
false)) {
262 $this->parent_obj->objProperties->setStatisticsStatus((
int) $a_form->
getInput(
'statistics_enabled'));
264 $this->parent_obj->objProperties->setPostActivation((
int) $a_form->
getInput(
'post_activation'));
265 $this->parent_obj->objProperties->setSubjectSetting($a_form->
getInput(
'subject_setting'));
266 $this->parent_obj->objProperties->setMarkModeratorPosts((
int) $a_form->
getInput(
'mark_mod_posts'));
267 $this->parent_obj->objProperties->setThreadSorting((
int) $a_form->
getInput(
'thread_sorting'));
268 $this->parent_obj->objProperties->setIsThreadRatingEnabled((
bool) $a_form->
getInput(
'thread_rating'));
270 $this->parent_obj->objProperties->setFileUploadAllowed((
bool) $a_form->
getInput(
'file_upload_allowed'));
272 $this->parent_obj->objProperties->update();
273 $this->obj_service->commonSettings()->legacyForm($a_form, $this->parent_obj->object)->saveTileImage();
278 if (!$this->access->checkAccess(
'write',
'', $this->parent_obj->ref_id)) {
279 $this->parent_obj->error->raiseError(
280 $this->lng->txt(
'msg_no_perm_read'),
281 $this->parent_obj->error->MESSAGE
285 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.forums_members_list.html',
'Modules/Forum');
290 $this->notificationSettingsForm->setValuesByArray(array(
291 'notification_type' => $this->parent_obj->objProperties->getNotificationType(),
292 'adm_force' => (bool) $this->parent_obj->objProperties->isAdminForceNoti(),
293 'usr_toggle' => (bool) $this->parent_obj->objProperties->isUserToggleNoti()
298 $this->tpl->setVariable(
'NOTIFICATIONS_SETTINGS_FORM', $this->notificationSettingsForm->getHTML());
301 $oParticipants = $this->getParticipants();
305 $admin_ids = $oParticipants->getAdmins();
306 $member_ids = $oParticipants->getMembers();
307 $tutor_ids = $oParticipants->getTutors();
309 if ($this->parent_obj->objProperties->getNotificationType() ==
'default') {
312 $forum_noti->
setAdminForce($this->parent_obj->objProperties->isAdminForceNoti());
313 $forum_noti->setUserToggle($this->parent_obj->objProperties->isUserToggleNoti());
314 $forum_noti->setForumId($this->parent_obj->objProperties->getObjId());
316 if ($this->parent_obj->objProperties->getNotificationType() ==
'per_user') {
329 $icon = $user_toggle_noti
330 ?
"<img src=\"" .
ilUtil::getImagePath(
"icon_ok.svg") .
"\" alt=\"" . $this->lng->txt(
"enabled") .
"\" title=\"" . $this->lng->txt(
"enabled") .
"\" border=\"0\" vspace=\"0\"/>" 331 :
"<img src=\"" .
ilUtil::getImagePath(
"icon_not_ok.svg") .
"\" alt=\"" . $this->lng->txt(
"disabled") .
"\" title=\"" . $this->lng->txt(
"disabled") .
"\" border=\"0\" vspace=\"0\"/>";
339 foreach ($user_ids as $user_id) {
342 $icon_ok = $this->
getIcon(!$user_toggle_noti);
347 $users[$counter][
'firstname'] =
$name[
'firstname'];
348 $users[$counter][
'lastname'] =
$name[
'lastname'];
349 $users[$counter][
'user_toggle_noti'] = $icon_ok;
357 foreach (array_filter([
358 'moderators' => $moderators,
359 'administrator' => $admins,
361 'members' => $members
364 $tbl_mod->setId(
'tbl_id_mod');
365 $tbl_mod->setFormAction($this->ctrl->getFormAction($this,
'showMembers'));
366 $tbl_mod->setTitle($this->lng->txt(strtolower(
$type)));
368 $tbl_mod->addColumn(
'',
'',
'1%',
true);
369 $tbl_mod->addColumn($this->lng->txt(
'login'),
'',
'10%');
370 $tbl_mod->addColumn($this->lng->txt(
'firstname'),
'',
'10%');
371 $tbl_mod->addColumn($this->lng->txt(
'lastname'),
'',
'10%');
372 $tbl_mod->addColumn($this->lng->txt(
'allow_user_toggle_noti'),
'',
'10%');
373 $tbl_mod->setSelectAllCheckbox(
'user_id');
375 $tbl_mod->setRowTemplate(
'tpl.forums_members_row.html',
'Modules/Forum');
376 $tbl_mod->setData(
$data);
378 $tbl_mod->addMultiCommand(
'enableHideUserToggleNoti', $this->lng->txt(
'enable_hide_user_toggle'));
379 $tbl_mod->addMultiCommand(
'disableHideUserToggleNoti', $this->lng->txt(
'disable_hide_user_toggle'));
381 $this->tpl->setCurrentBlock(strtolower(
$type) .
'_table');
382 $this->tpl->setVariable(strtoupper(
$type), $tbl_mod->getHTML());
388 if (!$this->access->checkAccess(
'write',
'', $this->parent_obj->ref_id)) {
389 $this->parent_obj->error->raiseError(
390 $this->lng->txt(
'msg_no_perm_read'),
391 $this->parent_obj->error->MESSAGE
395 if (!isset(
$_POST[
'user_id']) || !is_array(
$_POST[
'user_id'])) {
400 foreach (
$_POST[
'user_id'] as $user_id) {
402 $is_enabled = $frm_noti->isAdminForceNotification();
404 $frm_noti->setUserToggle(0);
406 $frm_noti->setAdminForce(1);
407 $frm_noti->insertAdminForce();
411 ilUtil::sendSuccess($this->lng->txt(
'saved_successfully'));
419 if (!$this->access->checkAccess(
'write',
'', $this->parent_obj->ref_id)) {
420 $this->parent_obj->error->raiseError(
421 $this->lng->txt(
'msg_no_perm_read'),
422 $this->parent_obj->error->MESSAGE
426 if (!isset(
$_POST[
'user_id']) || !is_array(
$_POST[
'user_id'])) {
431 foreach (
$_POST[
'user_id'] as $user_id) {
433 $is_enabled = $frm_noti->isAdminForceNotification();
436 $frm_noti->deleteAdminForce();
440 ilUtil::sendSuccess($this->lng->txt(
'saved_successfully'));
448 if (!$this->access->checkAccess(
'write',
'', $this->parent_obj->ref_id)) {
449 $this->parent_obj->error->raiseError(
450 $this->lng->txt(
'msg_no_perm_read'),
451 $this->parent_obj->error->MESSAGE
454 if (!isset(
$_POST[
'user_id']) || !is_array(
$_POST[
'user_id'])) {
459 foreach (
$_POST[
'user_id'] as $user_id) {
461 $is_enabled = $frm_noti->isAdminForceNotification();
462 $frm_noti->setUserToggle(1);
465 $frm_noti->setAdminForce(1);
466 $frm_noti->insertAdminForce();
468 $frm_noti->updateUserToggle();
472 ilUtil::sendSuccess($this->lng->txt(
'saved_successfully'));
480 if (!$this->access->checkAccess(
'write',
'', $this->parent_obj->ref_id)) {
481 $this->parent_obj->error->raiseError(
482 $this->lng->txt(
'msg_no_perm_read'),
483 $this->parent_obj->error->MESSAGE
487 if (!isset(
$_POST[
'user_id']) || !is_array(
$_POST[
'user_id'])) {
492 foreach (
$_POST[
'user_id'] as $user_id) {
494 $is_enabled = $frm_noti->isAdminForceNotification();
495 $frm_noti->setUserToggle(0);
497 $frm_noti->updateUserToggle();
499 $frm_noti->setAdminForce(1);
500 $frm_noti->insertAdminForce();
504 ilUtil::sendSuccess($this->lng->txt(
'saved_successfully'));
514 public function getParticipants()
516 if ($this->parent_obj->isParentObjectCrsOrGrp() ==
false) {
517 $this->parent_obj->error->raiseError(
518 $this->lng->txt(
'msg_no_perm_read'),
519 $this->parent_obj->error->MESSAGE
526 $oParticipants = null;
528 $grp_ref_id = $this->tree->checkForParentType($this->parent_obj->object->getRefId(),
'grp');
529 $crs_ref_id = $this->tree->checkForParentType($this->parent_obj->object->getRefId(),
'crs');
530 if ($grp_ref_id > 0) {
533 return $oParticipants;
535 if ($crs_ref_id > 0) {
539 return $oParticipants;
543 return $oParticipants;
549 $oParticipants = $this->getParticipants();
554 $admin_ids = $oParticipants->getAdmins();
555 $member_ids = $oParticipants->getMembers();
556 $tutor_ids = $oParticipants->getTutors();
558 $all_forum_users = array_merge($moderator_ids, $admin_ids, $member_ids, $tutor_ids);
559 $all_forum_users = array_unique($all_forum_users);
561 $all_notis = $frm_noti->read();
563 foreach ($all_forum_users as $user_id) {
564 $frm_noti->setUserId($user_id);
566 $frm_noti->setAdminForce(1);
567 $frm_noti->setUserToggle($this->parent_obj->objProperties->isUserToggleNoti());
569 if (array_key_exists($user_id, $all_notis) && $update_all_users) {
572 if ($frm_noti->existsNotification() ==
false) {
573 $frm_noti->insertAdminForce();
581 if (null === $this->notificationSettingsForm) {
583 $form->setFormAction($this->ctrl->getFormAction($this,
'updateNotificationSettings'));
584 $form->setTitle($this->lng->txt(
'forums_notification_settings'));
587 $radio_grp->setValue(
'default');
589 $opt_default =
new ilRadioOption($this->lng->txt(
"user_decides_notification"),
'default');
590 $opt_0 =
new ilRadioOption($this->lng->txt(
"settings_for_all_members"),
'all_users');
591 $opt_1 =
new ilRadioOption($this->lng->txt(
"settings_per_users"),
'per_user');
593 $radio_grp->addOption($opt_default);
594 $radio_grp->addOption($opt_0);
595 $radio_grp->addOption($opt_1);
601 $form->addItem($radio_grp);
603 $form->addCommandButton(
'updateNotificationSettings', $this->lng->txt(
'save'));
605 $this->notificationSettingsForm =
$form;
615 if (!$this->access->checkAccess(
'write',
'', $this->parent_obj->ref_id)) {
616 $this->parent_obj->error->raiseError(
617 $this->lng->txt(
'msg_no_perm_read'),
618 $this->parent_obj->error->MESSAGE
626 if ($this->notificationSettingsForm->checkInput()) {
627 if (isset(
$_POST[
'notification_type']) &&
$_POST[
'notification_type'] ==
'all_users') {
629 $this->parent_obj->objProperties->setAdminForceNoti(1);
630 $this->parent_obj->objProperties->setUserToggleNoti((
int) $this->notificationSettingsForm->getInput(
'usr_toggle'));
631 $this->parent_obj->objProperties->setNotificationType(
'all_users');
634 if (
$_POST[
'notification_type'] ==
'per_user') {
635 $this->parent_obj->objProperties->setNotificationType(
'per_user');
636 $this->parent_obj->objProperties->setAdminForceNoti(1);
637 $this->parent_obj->objProperties->setUserToggleNoti(0);
640 $this->parent_obj->objProperties->setNotificationType(
'default');
641 $this->parent_obj->objProperties->setAdminForceNoti(0);
642 $this->parent_obj->objProperties->setUserToggleNoti(0);
648 $this->parent_obj->objProperties->update();
651 ilUtil::sendSuccess($this->lng->txt(
'saved_successfully'));
653 $this->notificationSettingsForm->setValuesByPost();
getUserNotificationTableData($user_ids, ilForumNotification $frm_noti)
static _lookupLogin($a_user_id)
lookup login
static _lookupName($a_user_id)
lookup user name
This class represents an option in a radio group.
disableHideUserToggleNoti()
deleteNotificationAllUsers()
initNotificationSettingsForm()
isUserToggleNotification()
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
setAdminForce($a_admin_force)
Class ilForumSettingsGUI.
getIcon($user_toggle_noti)
Class ilForumNotification.
setInfo($a_info)
Set Info.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
updateUserNotifications($update_all_users=false)
addSubItem($a_item)
Add Subitem.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
updateNotificationSettings()
enableHideUserToggleNoti()
__construct(ilObjForumGUI $parent_obj)
ilForumSettingsGUI constructor.
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
updateCustomValues(ilPropertyFormGUI $a_form)
getCustomValues(array &$a_values)
$notificationSettingsForm
static isFileUploadGloballyAllowed()
static getInstanceByRefId($a_ref_id, $stop_on_error=true)
get an instance of an Ilias object by reference id
static _getModerators($a_ref_id)
get all users assigned to local role il_frm_moderator_<frm_ref_id> (static)
__showMembersTable(array $moderators, array $admins, array $members, array $tutors)
static formCheckbox($checked, $varname, $value, $disabled=false)
??? public