19 declare(strict_types=1);
36 private \ILIAS\HTTP\GlobalHttpState
$http;
42 private \ILIAS\DI\Container
$dic;
53 $this->
ctrl = $DIC->ctrl();
54 $this->tpl = $DIC->ui()->mainTemplate();
55 $this->
lng = $DIC->language();
57 $this->
tabs = $DIC->tabs();
58 $this->
access = $DIC->access();
59 $this->tree = $DIC->repositoryTree();
60 $this->obj_service = $this->dic->object();
61 $this->ref_id = $this->parent_obj->getObject()->getRefId();
62 $this->
http = $DIC->http();
63 $this->ui_factory = $DIC->ui()->factory();
65 $this->error = $DIC[
'ilErr'];
67 $this->
lng->loadLanguageModule(
'style');
68 $this->
lng->loadLanguageModule(
'cont');
78 $this->forumNotificationObj =
new ilForumNotification($this->parent_obj->getObject()->getRefId());
84 $cmd = $this->
ctrl->getCmd();
85 $next_class = $this->
ctrl->getNextClass();
87 switch (strtolower($next_class)) {
90 case method_exists($this, $cmd):
96 $this->
ctrl->redirect($this->parent_obj);
104 $section->setTitle($this->
lng->txt(
'rep_activation_availability'));
108 $online->
setInfo($this->
lng->txt(
'frm_activation_online_info'));
115 $this->
tabs->activateSubTab(self::UI_SUB_TAB_ID_BASIC_SETTINGS);
116 $a_form->
setTitle($this->
lng->txt(
'frm_settings_form_header'));
121 $presentationHeader->setTitle($this->
lng->txt(
'settings_presentation_header'));
122 $a_form->
addItem($presentationHeader);
124 $this->obj_service->commonSettings()->legacyForm($a_form, $this->parent_obj->getObject())->addTileImage();
128 $option_view_by_posts->
setInfo($this->
lng->txt(
'sort_by_posts_desc'));
129 $rg_pro->addOption($option_view_by_posts);
131 $option_view_by_date->setInfo($this->
lng->txt(
'sort_by_date_desc'));
136 $option_view_by_date->addSubItem($sub_group);
137 $rg_pro->addOption($option_view_by_date);
141 $userFunctionsHeader->setTitle($this->
lng->txt(
'frm_settings_user_functions_header'));
142 $a_form->
addItem($userFunctionsHeader);
146 $frm_subject->addOption(
new ilRadioOption($this->
lng->txt(
'add_re_to_subject'),
'add_re_to_subject'));
147 $frm_subject->addOption(
new ilRadioOption($this->
lng->txt(
'empty_subject'),
'empty_subject'));
148 $a_form->
addItem($frm_subject);
152 $cb_prop->setInfo($this->
lng->txt(
'enable_thread_ratings_info'));
158 $frm_upload->setInfo($this->
lng->txt(
'allow_file_upload_desc'));
163 $moderatorFunctionsHeader->setTitle($this->
lng->txt(
'frm_settings_mod_functions_header'));
164 $a_form->
addItem($moderatorFunctionsHeader);
168 $cb_prop->setInfo($this->
lng->txt(
'post_activation_desc'));
173 $cb_prop->setInfo($this->
lng->txt(
'mark_moderator_posts_desc'));
177 $latestAtTop =
new ilRadioOption($this->
lng->txt(
'frm_sticky_threads_latest_at_top'),
'0');
178 $latestAtTop->
setInfo($this->
lng->txt(
'frm_sticky_threads_latest_at_top_info'));
179 $stickyThreadSorting->addOption($latestAtTop);
180 $manualSorting =
new ilRadioOption($this->
lng->txt(
'frm_sticky_threads_manual_sorting'),
'1');
181 $manualSorting->
setInfo($this->
lng->txt(
'frm_sticky_threads_manual_sorting_info'));
182 $stickyThreadSorting->addOption($manualSorting);
183 $a_form->
addItem($stickyThreadSorting);
185 if ($this->
settings->get(
'enable_anonymous_fora') || $this->
settings->get(
'enable_fora_statistics')) {
187 $privacyHeader->setTitle($this->
lng->txt(
'frm_settings_privacy_header'));
188 $a_form->
addItem($privacyHeader);
191 if ($this->
settings->get(
'enable_fora_statistics')) {
194 $cb_prop->setInfo($this->
lng->txt(
'frm_statistics_enabled_desc'));
198 if ($this->
settings->get(
'enable_anonymous_fora') || $this->parent_obj->objProperties->isAnonymized()) {
201 $cb_prop->setInfo($this->
lng->txt(
'frm_anonymous_posting_desc'));
208 $this->
tabs->addSubTabTarget(
209 self::UI_SUB_TAB_ID_BASIC_SETTINGS,
210 $this->
ctrl->getLinkTarget($this->parent_obj,
'edit'),
212 [strtolower(ilObjForumGUI::class)]
215 if ($this->
settings->get(
'forum_notification') > 0) {
217 $grp_ref_id = $this->tree->checkForParentType($this->parent_obj->getRefId(),
'grp');
218 $crs_ref_id = $this->tree->checkForParentType($this->parent_obj->getRefId(),
'crs');
220 if ($grp_ref_id > 0 || $crs_ref_id > 0) {
221 #show member-tab for notification if forum-notification is enabled in administration 222 if ($this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
224 if ($this->dic->http()->wrapper()->query()->has(
'cmd')) {
225 $cmd = $this->dic->http()->wrapper()->query()->retrieve(
227 $this->dic->refinery()->kindlyTo()->string()
231 $mem_active = [
'showMembers',
'forums_notification_settings'];
232 $force_mem_active =
false;
233 if (in_array($cmd, $mem_active,
true)) {
234 $force_mem_active =
true;
237 $this->
tabs->addSubTabTarget(
238 self::UI_SUB_TAB_ID_NOTIFICATIONS,
239 $this->
ctrl->getLinkTarget($this,
'showMembers'),
241 [strtolower(self::class)],
249 $this->
tabs->addSubTabTarget(
250 self::UI_SUB_TAB_ID_NEWS,
251 $this->
ctrl->getLinkTargetByClass(ilContainerNewsSettingsGUI::class),
253 [strtolower(ilContainerNewsSettingsGUI::class)]
256 $this->
tabs->addSubTabTarget(
257 self::UI_SUB_TAB_ID_STYLE,
258 $this->
ctrl->getLinkTargetByClass(strtolower(ilObjectContentStyleSettingsGUI::class),
""),
260 [strtolower(ilObjectContentStyleSettingsGUI::class)]
263 $this->
tabs->activateTab(self::UI_TAB_ID_SETTINGS);
270 $a_values[
'anonymized'] = $this->parent_obj->objProperties->isAnonymized();
271 $a_values[
'statistics_enabled'] = $this->parent_obj->objProperties->isStatisticEnabled();
272 $a_values[
'post_activation'] = $this->parent_obj->objProperties->isPostActivationEnabled();
273 $a_values[
'subject_setting'] = $this->parent_obj->objProperties->getSubjectSetting();
274 $a_values[
'mark_mod_posts'] = $this->parent_obj->objProperties->getMarkModeratorPosts();
275 $a_values[
'thread_sorting'] = $this->parent_obj->objProperties->getThreadSorting();
276 $a_values[
'thread_rating'] = $this->parent_obj->objProperties->isIsThreadRatingEnabled();
278 $default_view_value = $this->parent_obj->objProperties->getDefaultView();
279 if (in_array($default_view_value, [
285 if (in_array($default_view_value, [
289 $default_view_by_date = $default_view_value;
292 $default_view = $default_view_value;
298 $a_values[
'default_view'] = $default_view;
299 if (isset($default_view_by_date)) {
300 $a_values[
'default_view_by_date'] = $default_view_by_date;
302 $a_values[
'file_upload_allowed'] = $this->parent_obj->objProperties->getFileUploadAllowed();
304 $object = $this->parent_obj->getObject();
305 $a_values[
'activation_online'] = $object->getOfflineStatus() ===
false;
310 $default_view_input_value = (
int) $a_form->
getInput(
'default_view');
311 if (in_array($default_view_input_value, [
318 $default_view_order_by_date_value = (
int) $a_form->
getInput(
'default_view_by_date');
319 if (in_array($default_view_order_by_date_value, [
323 $default_view_input_value = $default_view_order_by_date_value;
326 $default_view = $default_view_input_value;
330 $this->parent_obj->objProperties->setDefaultView($default_view);
338 if ($this->
settings->get(
'enable_anonymous_fora') || $this->parent_obj->objProperties->isAnonymized()) {
339 $this->parent_obj->objProperties->setAnonymisation((
bool) $a_form->
getInput(
'anonymized'));
341 if ($this->
settings->get(
'enable_fora_statistics')) {
342 $this->parent_obj->objProperties->setStatisticsStatus((
bool) $a_form->
getInput(
'statistics_enabled'));
344 $this->parent_obj->objProperties->setPostActivation((
bool) $a_form->
getInput(
'post_activation'));
345 $this->parent_obj->objProperties->setSubjectSetting($a_form->
getInput(
'subject_setting'));
346 $this->parent_obj->objProperties->setMarkModeratorPosts((
bool) $a_form->
getInput(
'mark_mod_posts'));
347 $this->parent_obj->objProperties->setThreadSorting((
int) $a_form->
getInput(
'thread_sorting'));
348 $this->parent_obj->objProperties->setIsThreadRatingEnabled((
bool) $a_form->
getInput(
'thread_rating'));
350 $this->parent_obj->objProperties->setFileUploadAllowed((
bool) $a_form->
getInput(
'file_upload_allowed'));
352 $this->parent_obj->objProperties->update();
353 $this->obj_service->commonSettings()->legacyForm($a_form, $this->parent_obj->getObject())->saveTileImage();
355 $object = $this->parent_obj->getObject();
356 $object->setOfflineStatus(!(
bool) $a_form->
getInput(
'activation_online'));
362 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
363 $this->error->raiseError(
364 $this->
lng->txt(
'msg_no_perm_read'),
365 $this->error->MESSAGE
369 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.forums_members_list.html',
'Modules/Forum');
374 $interested_events = $this->parent_obj->objProperties->getInterestedEvents();
397 $this->notificationSettingsForm->setValuesByArray([
398 'notification_type' => $this->parent_obj->objProperties->getNotificationType(),
399 'adm_force' => $this->parent_obj->objProperties->isAdminForceNoti(),
400 'usr_toggle' => $this->parent_obj->objProperties->isUserToggleNoti(),
401 'notification_events' => $form_events
406 $this->tpl->setVariable(
'NOTIFICATIONS_SETTINGS_FORM', $this->notificationSettingsForm->getHTML());
413 $admin_ids = $oParticipants->getAdmins();
414 $member_ids = $oParticipants->getMembers();
415 $tutor_ids = $oParticipants->getTutors();
417 if ($this->parent_obj->objProperties->getNotificationType() ===
'default') {
420 $forum_noti->
setAdminForce($this->parent_obj->objProperties->isAdminForceNoti());
421 $forum_noti->setUserToggle($this->parent_obj->objProperties->isUserToggleNoti());
422 $forum_noti->setForumId($this->parent_obj->objProperties->getObjId());
423 $forum_noti->setInterestedEvents($this->parent_obj->objProperties->getInterestedEvents());
424 $forum_noti->update();
425 } elseif ($this->parent_obj->objProperties->getNotificationType() ===
'per_user') {
441 foreach ($user_ids as $user_id) {
442 $forced_events = $this->forumNotificationObj->getForcedEventsObjectByUserId($user_id);
447 $users[$counter][
'firstname'] =
$name[
'firstname'];
448 $users[$counter][
'lastname'] =
$name[
'lastname'];
449 $users[$counter][
'user_toggle_noti'] = $forced_events->getUserToggle();
450 $users[$counter][
'notification_id'] = $forced_events->getNotificationId();
451 $users[$counter][
'interested_events'] = $forced_events->getInterestedEvents();
452 $users[$counter][
'usr_id_events'] = $user_id;
453 $users[$counter][
'forum_id'] = $forced_events->getForumId();
460 private function showMembersTable(array $moderators, array $admins, array $members, array $tutors): void
462 foreach (array_filter([
463 'moderators' => $moderators,
464 'administrator' => $admins,
466 'members' => $members
469 $tbl->setData(
$data);
471 $this->tpl->setCurrentBlock(strtolower(
$type) .
'_table');
472 $this->tpl->setVariable(strtoupper(
$type), $tbl->getHTML());
478 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
479 $this->error->raiseError(
480 $this->
lng->txt(
'msg_no_perm_read'),
481 $this->error->MESSAGE
486 $this->
ctrl->getFormAction($this,
'saveEventsForUser'),
492 if ($this->
http->request()->getMethod() ===
'POST') {
493 $form = $events_form_builder->
build()->withRequest($this->
http->request());
494 $formData = $form->getData();
498 foreach ($events_form_builder->getValidEvents() as $event) {
499 $interested_events += isset($formData[$event]) && $formData[$event] ? $events_form_builder->getValueForEvent(
504 if (isset($formData[
'hidden_value']) && $formData[
'hidden_value']) {
505 $hidden_value = json_decode($formData[
'hidden_value'],
false, 512, JSON_THROW_ON_ERROR);
509 $admin_ids = $oParticipants->getAdmins();
510 $member_ids = $oParticipants->getMembers();
511 $tutor_ids = $oParticipants->getTutors();
513 $valid_usr_ids = array_unique(array_merge($moderator_ids, $admin_ids, $member_ids, $tutor_ids));
515 if (in_array($hidden_value->usr_id, $valid_usr_ids)) {
517 $frm_noti->
setUserId($hidden_value->usr_id);
518 $frm_noti->setForumId($this->parent_obj->getObject()->getId());
519 $frm_noti->setInterestedEvents($interested_events);
520 $frm_noti->updateInterestedEvents();
525 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
532 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
533 $this->error->raiseError(
534 $this->
lng->txt(
'msg_no_perm_read'),
535 $this->error->MESSAGE
540 if ($this->dic->http()->wrapper()->post()->has(
'user_id')) {
541 $user_ids = $this->dic->http()->wrapper()->post()->retrieve(
543 $this->dic->refinery()->kindlyTo()->listOf($this->dic->refinery()->kindlyTo()->int())
547 if (count($user_ids) === 0) {
548 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'time_limit_no_users_selected'),
true);
552 foreach ($user_ids as $user_id) {
554 $frm_noti->setUserToggle(
false);
555 $is_enabled = $frm_noti->isAdminForceNotification();
558 $frm_noti->setAdminForce(
true);
559 $frm_noti->insertAdminForce();
563 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
571 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
572 $this->error->raiseError(
573 $this->
lng->txt(
'msg_no_perm_read'),
574 $this->error->MESSAGE
579 if ($this->dic->http()->wrapper()->post()->has(
'user_id')) {
580 $user_ids = $this->dic->http()->wrapper()->post()->retrieve(
582 $this->dic->refinery()->kindlyTo()->listOf($this->dic->refinery()->kindlyTo()->int())
586 if (count($user_ids) === 0) {
587 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'time_limit_no_users_selected'));
591 foreach ($user_ids as $user_id) {
593 $is_enabled = $frm_noti->isAdminForceNotification();
596 $frm_noti->deleteAdminForce();
600 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
608 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
609 $this->error->raiseError(
610 $this->
lng->txt(
'msg_no_perm_read'),
611 $this->error->MESSAGE
616 if ($this->dic->http()->wrapper()->post()->has(
'user_id')) {
617 $user_ids = $this->dic->http()->wrapper()->post()->retrieve(
619 $this->dic->refinery()->kindlyTo()->listOf($this->dic->refinery()->kindlyTo()->int())
623 if (count($user_ids) === 0) {
624 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'time_limit_no_users_selected'));
628 foreach ($user_ids as $user_id) {
630 $frm_noti->setUserToggle(
true);
631 $is_enabled = $frm_noti->isAdminForceNotification();
634 $frm_noti->setAdminForce(
true);
635 $frm_noti->insertAdminForce();
637 $frm_noti->updateUserToggle();
641 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
649 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
650 $this->error->raiseError(
651 $this->
lng->txt(
'msg_no_perm_read'),
652 $this->error->MESSAGE
657 if ($this->dic->http()->wrapper()->post()->has(
'user_id')) {
658 $user_ids = $this->dic->http()->wrapper()->post()->retrieve(
660 $this->dic->refinery()->kindlyTo()->listOf($this->dic->refinery()->kindlyTo()->int())
664 if (count($user_ids) === 0) {
665 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'time_limit_no_users_selected'));
669 foreach ($user_ids as $user_id) {
671 $frm_noti->setUserToggle(
false);
672 $is_enabled = $frm_noti->isAdminForceNotification();
674 $frm_noti->updateUserToggle();
676 $frm_noti->setAdminForce(
true);
677 $frm_noti->insertAdminForce();
681 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
689 if (!$this->parent_obj->isParentObjectCrsOrGrp()) {
690 $this->error->raiseError(
691 $this->
lng->txt(
'msg_no_perm_read'),
692 $this->error->MESSAGE
696 $grp_ref_id = $this->tree->checkForParentType($this->parent_obj->getObject()->getRefId(),
'grp');
697 if ($grp_ref_id > 0) {
702 $crs_ref_id = $this->tree->checkForParentType($this->parent_obj->getObject()->getRefId(),
'crs');
715 $admin_ids = $oParticipants->getAdmins();
716 $member_ids = $oParticipants->getMembers();
717 $tutor_ids = $oParticipants->getTutors();
719 $all_forum_users = array_merge($moderator_ids, $admin_ids, $member_ids, $tutor_ids);
720 $all_forum_users = array_unique($all_forum_users);
722 $all_notis = $frm_noti->read();
724 foreach ($all_forum_users as $user_id) {
725 $frm_noti->setUserId($user_id);
727 $frm_noti->setAdminForce(
true);
728 $frm_noti->setUserToggle($this->parent_obj->objProperties->isUserToggleNoti());
729 $frm_noti->setInterestedEvents($this->parent_obj->objProperties->getInterestedEvents());
731 if (array_key_exists($user_id, $all_notis) && $update_all_users) {
733 } elseif ($frm_noti->existsNotification() ===
false) {
734 $frm_noti->insertAdminForce();
741 if (null === $this->notificationSettingsForm) {
743 $form->setFormAction($this->
ctrl->getFormAction($this,
'updateNotificationSettings'));
744 $form->setTitle($this->
lng->txt(
'forums_notification_settings'));
747 $radio_grp->setValue(
'default');
749 $opt_default =
new ilRadioOption($this->
lng->txt(
"user_decides_notification"),
'default');
750 $opt_0 =
new ilRadioOption($this->
lng->txt(
"settings_for_all_members"),
'all_users');
751 $opt_1 =
new ilRadioOption($this->
lng->txt(
"settings_per_users"),
'per_user');
753 $radio_grp->addOption($opt_default);
754 $radio_grp->addOption($opt_0);
755 $radio_grp->addOption($opt_1);
765 $cb_grp->addOption($notify_modified);
768 $cb_grp->addOption($notify_censored);
771 $cb_grp->addOption($notify_uncensored);
774 $cb_grp->addOption($notify_post_deleted);
777 $cb_grp->addOption($notify_thread_deleted);
780 $form->addItem($radio_grp);
782 $form->addCommandButton(
'updateNotificationSettings', $this->
lng->txt(
'save'));
784 $this->notificationSettingsForm = $form;
794 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
795 $this->error->raiseError(
796 $this->
lng->txt(
'msg_no_perm_read'),
797 $this->error->MESSAGE
805 if ($this->notificationSettingsForm->checkInput()) {
806 $notification_type =
'';
807 if ($this->dic->http()->wrapper()->post()->has(
'notification_type')) {
808 $notification_type = $this->dic->http()->wrapper()->post()->retrieve(
810 $this->dic->refinery()->kindlyTo()->string()
814 if ($notification_type ===
'all_users') {
816 $notification_events = $this->notificationSettingsForm->getInput(
'notification_events');
817 $interested_events = 0;
819 if (is_array($notification_events)) {
820 foreach ($notification_events as $activated_event) {
821 $interested_events += (
int) $activated_event;
825 $this->parent_obj->objProperties->setAdminForceNoti(
true);
826 $this->parent_obj->objProperties->setUserToggleNoti((
bool) $this->notificationSettingsForm->getInput(
'usr_toggle'));
827 $this->parent_obj->objProperties->setNotificationType(
'all_users');
828 $this->parent_obj->objProperties->setInterestedEvents($interested_events);
830 } elseif ($notification_type ===
'per_user') {
831 $this->parent_obj->objProperties->setNotificationType(
'per_user');
832 $this->parent_obj->objProperties->setAdminForceNoti(
true);
833 $this->parent_obj->objProperties->setUserToggleNoti(
false);
836 $this->parent_obj->objProperties->setNotificationType(
'default');
837 $this->parent_obj->objProperties->setAdminForceNoti(
false);
838 $this->parent_obj->objProperties->setUserToggleNoti(
false);
843 $this->parent_obj->objProperties->update();
845 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
847 $this->notificationSettingsForm->setValuesByPost();
ilObjectService $obj_service
static get(string $a_var)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
disableHideUserToggleNoti()
deleteNotificationAllUsers()
initNotificationSettingsForm()
ILIAS Refinery Factory $refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setUserId(?int $a_user_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
showMembersTable(array $moderators, array $admins, array $members, array $tutors)
ilPropertyFormGUI $notificationSettingsForm
ilForumNotification $forumNotificationObj
static _lookupName(int $a_user_id)
lookup user name
ilGlobalTemplateInterface $tpl
Class ilForumSettingsGUI.
addAvailabilitySection(ilPropertyFormGUI $form)
static http()
Fetches the global http state from ILIAS.
static _getInstanceByObjId(int $a_obj_id)
ilObjForumGUI $parent_obj
setAdminForce(bool $a_admin_force)
updateNotificationSettings()
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
enableHideUserToggleNoti()
__construct(ilObjForumGUI $parent_obj)
updateCustomValues(ilPropertyFormGUI $a_form)
getCustomValues(array &$a_values)
ILIAS HTTP GlobalHttpState $http
Base class for course and group participants.
getUserNotificationTableData($user_ids)
Error Handling & global info handling uses PEAR error class.
getCustomForm(ilPropertyFormGUI $a_form)
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
updateUserNotifications(bool $update_all_users=false)
static isFileUploadGloballyAllowed()
static _getModerators(int $a_ref_id)
Class ilForumNotificationTableGUI.
initForcedForumNotification()
static set(string $a_var, $a_val)
Set a value.
static _lookupLogin(int $a_user_id)
ILIAS UI Factory $ui_factory