19 declare(strict_types=1);
35 private readonly \ILIAS\HTTP\GlobalHttpState
$http;
40 private readonly \ILIAS\DI\Container
$dic;
50 $this->
ctrl = $DIC->ctrl();
51 $this->tpl = $DIC->ui()->mainTemplate();
52 $this->
lng = $DIC->language();
54 $this->
tabs = $DIC->tabs();
55 $this->
access = $DIC->access();
56 $this->tree = $DIC->repositoryTree();
57 $this->obj_service = $this->dic->object();
58 $this->ref_id = $this->parent_obj->getObject()->getRefId();
59 $this->
http = $DIC->http();
60 $this->ui_factory = $DIC->ui()->factory();
61 $this->error = $DIC[
'ilErr'];
63 $this->
lng->loadLanguageModule(
'style');
64 $this->
lng->loadLanguageModule(
'cont');
74 $this->forumNotificationObj =
new ilForumNotification($this->parent_obj->getObject()->getRefId());
80 $cmd = $this->
ctrl->getCmd();
83 case method_exists($this, $cmd):
89 $this->
ctrl->redirect($this->parent_obj);
96 $section->setTitle($this->
lng->txt(
'rep_activation_availability'));
100 $online->setInfo($this->
lng->txt(
'frm_activation_online_info'));
107 $this->
tabs->activateSubTab(self::UI_SUB_TAB_ID_BASIC_SETTINGS);
108 $a_form->
setTitle($this->
lng->txt(
'frm_settings_form_header'));
113 $presentationHeader->setTitle($this->
lng->txt(
'settings_presentation_header'));
114 $a_form->
addItem($presentationHeader);
116 $this->obj_service->commonSettings()->legacyForm($a_form, $this->parent_obj->getObject())->addTileImage();
120 $option_view_by_posts->
setInfo($this->
lng->txt(
'sort_by_posts_desc'));
121 $rg_pro->addOption($option_view_by_posts);
123 $option_view_by_date->setInfo($this->
lng->txt(
'sort_by_date_desc'));
128 $option_view_by_date->addSubItem($sub_group);
129 $rg_pro->addOption($option_view_by_date);
133 $userFunctionsHeader->setTitle($this->
lng->txt(
'frm_settings_user_functions_header'));
134 $a_form->
addItem($userFunctionsHeader);
138 $frm_subject->addOption(
new ilRadioOption($this->
lng->txt(
'add_re_to_subject'),
'add_re_to_subject'));
139 $frm_subject->addOption(
new ilRadioOption($this->
lng->txt(
'empty_subject'),
'empty_subject'));
140 $a_form->
addItem($frm_subject);
143 $cb_prop->setValue(
'1');
144 $cb_prop->setInfo($this->
lng->txt(
'enable_thread_ratings_info'));
149 $frm_upload->setValue(
'1');
150 $frm_upload->setInfo($this->
lng->txt(
'allow_file_upload_desc'));
155 $moderatorFunctionsHeader->setTitle($this->
lng->txt(
'frm_settings_mod_functions_header'));
156 $a_form->
addItem($moderatorFunctionsHeader);
159 $cb_prop->setValue(
'1');
160 $cb_prop->setInfo($this->
lng->txt(
'post_activation_desc'));
164 $cb_prop->setValue(
'1');
165 $cb_prop->setInfo($this->
lng->txt(
'mark_moderator_posts_desc'));
168 if ($this->
settings->get(
'enable_anonymous_fora') || $this->
settings->get(
'enable_fora_statistics')) {
170 $privacyHeader->setTitle($this->
lng->txt(
'frm_settings_privacy_header'));
171 $a_form->
addItem($privacyHeader);
174 if ($this->
settings->get(
'enable_fora_statistics')) {
176 $cb_prop->setValue(
'1');
177 $cb_prop->setInfo($this->
lng->txt(
'frm_statistics_enabled_desc'));
181 if ($this->
settings->get(
'enable_anonymous_fora') || $this->parent_obj->objProperties->isAnonymized()) {
183 $cb_prop->setValue(
'1');
184 $cb_prop->setInfo($this->
lng->txt(
'frm_anonymous_posting_desc'));
191 $this->
tabs->addSubTabTarget(
192 self::UI_SUB_TAB_ID_BASIC_SETTINGS,
193 $this->
ctrl->getLinkTarget($this->parent_obj,
'edit'),
195 [strtolower(ilObjForumGUI::class)]
198 if ($this->
settings->get(
'forum_notification') > 0) {
200 $grp_ref_id = $this->tree->checkForParentType($this->parent_obj->getRefId(),
'grp');
201 $crs_ref_id = $this->tree->checkForParentType($this->parent_obj->getRefId(),
'crs');
203 #show member-tab for notification if forum-notification is enabled in administration 204 if (($grp_ref_id > 0 || $crs_ref_id > 0) && $this->
access->checkAccess(
207 $this->parent_obj->getRefId()
210 if ($this->dic->http()->wrapper()->query()->has(
'cmd')) {
211 $cmd = $this->dic->http()->wrapper()->query()->retrieve(
213 $this->dic->refinery()->kindlyTo()->string()
216 $mem_active = [
'showMembers',
'forums_notification_settings'];
217 $force_mem_active =
false;
218 if (in_array($cmd, $mem_active,
true)) {
219 $force_mem_active =
true;
221 $this->
tabs->addSubTabTarget(
222 self::UI_SUB_TAB_ID_NOTIFICATIONS,
223 $this->
ctrl->getLinkTarget($this,
'showMembers'),
225 [strtolower(self::class)],
232 $this->
tabs->addSubTabTarget(
233 self::UI_SUB_TAB_ID_NEWS,
234 $this->
ctrl->getLinkTargetByClass(ilContainerNewsSettingsGUI::class),
236 [strtolower(ilContainerNewsSettingsGUI::class)]
239 $this->
tabs->addSubTabTarget(
240 self::UI_SUB_TAB_ID_STYLE,
241 $this->
ctrl->getLinkTargetByClass(strtolower(ilObjectContentStyleSettingsGUI::class),
""),
243 [strtolower(ilObjectContentStyleSettingsGUI::class)]
246 $this->
tabs->activateTab(self::UI_TAB_ID_SETTINGS);
253 $a_values[
'anonymized'] = $this->parent_obj->objProperties->isAnonymized();
254 $a_values[
'statistics_enabled'] = $this->parent_obj->objProperties->isStatisticEnabled();
255 $a_values[
'post_activation'] = $this->parent_obj->objProperties->isPostActivationEnabled();
256 $a_values[
'subject_setting'] = $this->parent_obj->objProperties->getSubjectSetting();
257 $a_values[
'mark_mod_posts'] = $this->parent_obj->objProperties->getMarkModeratorPosts();
258 $a_values[
'thread_rating'] = $this->parent_obj->objProperties->isIsThreadRatingEnabled();
260 $default_view_value = $this->parent_obj->objProperties->getDefaultView();
261 if (in_array($default_view_value, [
267 if (in_array($default_view_value, [
271 $default_view_by_date = $default_view_value;
274 $default_view = $default_view_value;
280 $a_values[
'default_view'] = $default_view;
281 if (isset($default_view_by_date)) {
282 $a_values[
'default_view_by_date'] = $default_view_by_date;
284 $a_values[
'file_upload_allowed'] = $this->parent_obj->objProperties->getFileUploadAllowed();
286 $object = $this->parent_obj->getObject();
287 $a_values[
'activation_online'] = !$object->getOfflineStatus();
292 $default_view_input_value = (
int) $a_form->
getInput(
'default_view');
293 if (in_array($default_view_input_value, [
300 $default_view_order_by_date_value = (
int) $a_form->
getInput(
'default_view_by_date');
301 if (in_array($default_view_order_by_date_value, [
305 $default_view_input_value = $default_view_order_by_date_value;
308 $default_view = $default_view_input_value;
312 $this->parent_obj->objProperties->setDefaultView($default_view);
316 $view_mode =
'viewmode_' . $this->parent_obj->getObject()->getId();
321 if ($this->
settings->get(
'enable_anonymous_fora') || $this->parent_obj->objProperties->isAnonymized()) {
322 $this->parent_obj->objProperties->setAnonymisation((
bool) $a_form->
getInput(
'anonymized'));
324 if ($this->
settings->get(
'enable_fora_statistics')) {
325 $this->parent_obj->objProperties->setStatisticsStatus((
bool) $a_form->
getInput(
'statistics_enabled'));
327 $this->parent_obj->objProperties->setPostActivation((
bool) $a_form->
getInput(
'post_activation'));
328 $this->parent_obj->objProperties->setSubjectSetting($a_form->
getInput(
'subject_setting'));
329 $this->parent_obj->objProperties->setMarkModeratorPosts((
bool) $a_form->
getInput(
'mark_mod_posts'));
330 $this->parent_obj->objProperties->setIsThreadRatingEnabled((
bool) $a_form->
getInput(
'thread_rating'));
332 $this->parent_obj->objProperties->setFileUploadAllowed((
bool) $a_form->
getInput(
'file_upload_allowed'));
334 $this->parent_obj->objProperties->update();
335 $this->obj_service->commonSettings()->legacyForm($a_form, $this->parent_obj->getObject())->saveTileImage();
337 $object = $this->parent_obj->getObject();
338 $object->setOfflineStatus(!(
bool) $a_form->
getInput(
'activation_online'));
344 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
345 $this->error->raiseError(
346 $this->
lng->txt(
'msg_no_perm_read'),
347 $this->error->MESSAGE
351 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.forums_members_list.html',
'components/ILIAS/Forum');
356 $interested_events = $this->parent_obj->objProperties->getInterestedEvents();
379 $this->notificationSettingsForm->setValuesByArray([
380 'notification_type' => $this->parent_obj->objProperties->getNotificationType(),
381 'adm_force' => $this->parent_obj->objProperties->isAdminForceNoti(),
382 'usr_toggle' => $this->parent_obj->objProperties->isUserToggleNoti(),
383 'notification_events' => $form_events
388 $this->tpl->setVariable(
'NOTIFICATIONS_SETTINGS_FORM', $this->notificationSettingsForm->getHTML());
394 $admin_ids = $oParticipants->getAdmins();
395 $member_ids = $oParticipants->getMembers();
396 $tutor_ids = $oParticipants->getTutors();
398 if ($this->parent_obj->objProperties->getNotificationType() ===
'default') {
401 $forum_noti->
setAdminForce($this->parent_obj->objProperties->isAdminForceNoti());
402 $forum_noti->setUserToggle($this->parent_obj->objProperties->isUserToggleNoti());
403 $forum_noti->setForumId($this->parent_obj->objProperties->getObjId());
404 $forum_noti->setInterestedEvents($this->parent_obj->objProperties->getInterestedEvents());
405 $forum_noti->update();
406 } elseif ($this->parent_obj->objProperties->getNotificationType() ===
'per_user') {
427 $forced_events = $this->forumNotificationObj->getForcedEventsObjectByUserId($user_id);
432 $users[$counter][
'firstname'] = $name[
'firstname'];
433 $users[$counter][
'lastname'] = $name[
'lastname'];
434 $users[$counter][
'user_toggle_noti'] = $forced_events->getUserToggle();
435 $users[$counter][
'notification_id'] = $forced_events->getNotificationId();
436 $users[$counter][
'interested_events'] = $forced_events->getInterestedEvents();
437 $users[$counter][
'usr_id_events'] =
$user_id;
438 $users[$counter][
'forum_id'] = $forced_events->getForumId();
445 private function showMembersTable(array $moderators, array $admins, array $members, array $tutors): void
447 foreach (array_filter([
448 'moderators' => $moderators,
449 'administrator' => $admins,
451 'members' => $members
452 ]) as $type =>
$data) {
454 $tbl->setData(
$data);
456 $this->tpl->setCurrentBlock(strtolower($type) .
'_table');
457 $this->tpl->setVariable(strtoupper($type), $tbl->getHTML());
463 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
464 $this->error->raiseError(
465 $this->
lng->txt(
'msg_no_perm_read'),
466 $this->error->MESSAGE
471 $this->
ctrl->getFormAction($this,
'saveEventsForUser'),
477 if ($this->
http->request()->getMethod() ===
'POST') {
478 $form = $events_form_builder->
build()->withRequest($this->
http->request());
479 $formData = $form->getData();
483 foreach ($events_form_builder->getValidEvents() as $event) {
484 $interested_events += isset($formData[$event]) && $formData[$event] ? $events_form_builder->getValueForEvent(
489 if (isset($formData[
'hidden_value']) && $formData[
'hidden_value']) {
490 $hidden_value = json_decode($formData[
'hidden_value'],
false, 512, JSON_THROW_ON_ERROR);
494 $admin_ids = $oParticipants->getAdmins();
495 $member_ids = $oParticipants->getMembers();
496 $tutor_ids = $oParticipants->getTutors();
498 $valid_usr_ids = array_unique(array_merge($moderator_ids, $admin_ids, $member_ids, $tutor_ids));
500 if (in_array($hidden_value->usr_id, $valid_usr_ids)) {
502 $frm_noti->
setUserId($hidden_value->usr_id);
503 $frm_noti->setForumId($this->parent_obj->getObject()->getId());
504 $frm_noti->setInterestedEvents($interested_events);
505 $frm_noti->updateInterestedEvents();
510 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
517 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
518 $this->error->raiseError(
519 $this->
lng->txt(
'msg_no_perm_read'),
520 $this->error->MESSAGE
525 if ($this->dic->http()->wrapper()->post()->has(
'user_id')) {
526 $user_ids = $this->dic->http()->wrapper()->post()->retrieve(
528 $this->dic->refinery()->kindlyTo()->listOf($this->dic->refinery()->kindlyTo()->int())
532 if (count($user_ids) === 0) {
533 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'time_limit_no_users_selected'),
true);
539 $frm_noti->setUserToggle(
false);
540 $is_enabled = $frm_noti->isAdminForceNotification();
543 $frm_noti->setAdminForce(
true);
544 $frm_noti->insertAdminForce();
548 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
556 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
557 $this->error->raiseError(
558 $this->
lng->txt(
'msg_no_perm_read'),
559 $this->error->MESSAGE
564 if ($this->dic->http()->wrapper()->post()->has(
'user_id')) {
565 $user_ids = $this->dic->http()->wrapper()->post()->retrieve(
567 $this->dic->refinery()->kindlyTo()->listOf($this->dic->refinery()->kindlyTo()->int())
571 if (count($user_ids) === 0) {
572 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'time_limit_no_users_selected'));
578 $is_enabled = $frm_noti->isAdminForceNotification();
581 $frm_noti->deleteAdminForce();
585 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
593 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
594 $this->error->raiseError(
595 $this->
lng->txt(
'msg_no_perm_read'),
596 $this->error->MESSAGE
601 if ($this->dic->http()->wrapper()->post()->has(
'user_id')) {
602 $user_ids = $this->dic->http()->wrapper()->post()->retrieve(
604 $this->dic->refinery()->kindlyTo()->listOf($this->dic->refinery()->kindlyTo()->int())
608 if (count($user_ids) === 0) {
609 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'time_limit_no_users_selected'));
615 $frm_noti->setUserToggle(
true);
616 $is_enabled = $frm_noti->isAdminForceNotification();
619 $frm_noti->setAdminForce(
true);
620 $frm_noti->insertAdminForce();
622 $frm_noti->updateUserToggle();
626 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
634 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
635 $this->error->raiseError(
636 $this->
lng->txt(
'msg_no_perm_read'),
637 $this->error->MESSAGE
642 if ($this->dic->http()->wrapper()->post()->has(
'user_id')) {
643 $user_ids = $this->dic->http()->wrapper()->post()->retrieve(
645 $this->dic->refinery()->kindlyTo()->listOf($this->dic->refinery()->kindlyTo()->int())
649 if (count($user_ids) === 0) {
650 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'time_limit_no_users_selected'));
656 $frm_noti->setUserToggle(
false);
657 $is_enabled = $frm_noti->isAdminForceNotification();
659 $frm_noti->updateUserToggle();
661 $frm_noti->setAdminForce(
true);
662 $frm_noti->insertAdminForce();
666 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
674 if (!$this->parent_obj->isParentObjectCrsOrGrp()) {
675 $this->error->raiseError(
676 $this->
lng->txt(
'msg_no_perm_read'),
677 $this->error->MESSAGE
681 $grp_ref_id = $this->tree->checkForParentType($this->parent_obj->getObject()->getRefId(),
'grp');
682 if ($grp_ref_id > 0) {
687 $crs_ref_id = $this->tree->checkForParentType($this->parent_obj->getObject()->getRefId(),
'crs');
700 $admin_ids = $oParticipants->getAdmins();
701 $member_ids = $oParticipants->getMembers();
702 $tutor_ids = $oParticipants->getTutors();
704 $all_forum_users = array_merge($moderator_ids, $admin_ids, $member_ids, $tutor_ids);
705 $all_forum_users = array_unique($all_forum_users);
707 $all_notis = $frm_noti->read();
709 foreach ($all_forum_users as
$user_id) {
710 $frm_noti->setUserId($user_id);
712 $frm_noti->setAdminForce(
true);
713 $frm_noti->setUserToggle($this->parent_obj->objProperties->isUserToggleNoti());
714 $frm_noti->setInterestedEvents($this->parent_obj->objProperties->getInterestedEvents());
716 if (array_key_exists($user_id, $all_notis) && $update_all_users) {
718 } elseif (!$frm_noti->existsNotification()) {
719 $frm_noti->insertAdminForce();
726 if (
null === $this->notificationSettingsForm) {
728 $form->setFormAction($this->
ctrl->getFormAction($this,
'updateNotificationSettings'));
729 $form->setTitle($this->
lng->txt(
'forums_notification_settings'));
732 $radio_grp->setValue(
'default');
734 $opt_default =
new ilRadioOption($this->
lng->txt(
"user_decides_notification"),
'default');
735 $opt_0 =
new ilRadioOption($this->
lng->txt(
"settings_for_all_members"),
'all_users');
736 $opt_1 =
new ilRadioOption($this->
lng->txt(
"settings_per_users"),
'per_user');
738 $radio_grp->addOption($opt_default);
739 $radio_grp->addOption($opt_0);
740 $radio_grp->addOption($opt_1);
743 $chb_2->setValue(
'1');
750 $cb_grp->addOption($notify_modified);
753 $cb_grp->addOption($notify_censored);
756 $cb_grp->addOption($notify_uncensored);
759 $cb_grp->addOption($notify_post_deleted);
762 $cb_grp->addOption($notify_thread_deleted);
765 $form->addItem($radio_grp);
767 $form->addCommandButton(
'updateNotificationSettings', $this->
lng->txt(
'save'));
769 $this->notificationSettingsForm = $form;
779 if (!$this->
access->checkAccess(
'write',
'', $this->parent_obj->getRefId())) {
780 $this->error->raiseError(
781 $this->
lng->txt(
'msg_no_perm_read'),
782 $this->error->MESSAGE
790 if ($this->notificationSettingsForm->checkInput()) {
791 $notification_type =
'';
792 if ($this->dic->http()->wrapper()->post()->has(
'notification_type')) {
793 $notification_type = $this->dic->http()->wrapper()->post()->retrieve(
795 $this->dic->refinery()->kindlyTo()->string()
799 if ($notification_type ===
'all_users') {
801 $notification_events = $this->notificationSettingsForm->getInput(
'notification_events');
802 $interested_events = 0;
804 if (is_array($notification_events)) {
805 foreach ($notification_events as $activated_event) {
806 $interested_events += (
int) $activated_event;
810 $this->parent_obj->objProperties->setAdminForceNoti(
true);
811 $this->parent_obj->objProperties->setUserToggleNoti((
bool) $this->notificationSettingsForm->getInput(
'usr_toggle'));
812 $this->parent_obj->objProperties->setNotificationType(
'all_users');
813 $this->parent_obj->objProperties->setInterestedEvents($interested_events);
815 } elseif ($notification_type ===
'per_user') {
816 $this->parent_obj->objProperties->setNotificationType(
'per_user');
817 $this->parent_obj->objProperties->setAdminForceNoti(
true);
818 $this->parent_obj->objProperties->setUserToggleNoti(
false);
821 $this->parent_obj->objProperties->setNotificationType(
'default');
822 $this->parent_obj->objProperties->setAdminForceNoti(
false);
823 $this->parent_obj->objProperties->setUserToggleNoti(
false);
828 $this->parent_obj->objProperties->update();
830 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
832 $this->notificationSettingsForm->setValuesByPost();
static get(string $a_var)
This class represents an option in a radio group.
readonly ILIAS HTTP GlobalHttpState $http
disableHideUserToggleNoti()
deleteNotificationAllUsers()
initNotificationSettingsForm()
This class represents an option in a checkbox group.
setUserId(?int $a_user_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readonly ILIAS UI Factory $ui_factory
showMembersTable(array $moderators, array $admins, array $members, array $tutors)
readonly ilObjectService $obj_service
ilPropertyFormGUI $notificationSettingsForm
ilForumNotification $forumNotificationObj
readonly ilGlobalTemplateInterface $tpl
static _lookupName(int $a_user_id)
lookup user name
Class ilForumSettingsGUI.
Class ilForumNotification.
addAvailabilitySection(ilPropertyFormGUI $form)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
__construct(private readonly ilObjForumGUI $parent_obj)
static _getInstanceByObjId(int $a_obj_id)
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
readonly ilSetting $settings
readonly ilCtrlInterface $ctrl
enableHideUserToggleNoti()
updateCustomValues(ilPropertyFormGUI $a_form)
getCustomValues(array &$a_values)
Base class for course and group participants.
getCustomForm(ilPropertyFormGUI $a_form)
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
updateUserNotifications(bool $update_all_users=false)
readonly ilAccessHandler $access
static isFileUploadGloballyAllowed()
static _getModerators(int $a_ref_id)
Class ilForumNotificationTableGUI.
getUserNotificationTableData(array $user_ids)
initForcedForumNotification()
readonly ilErrorHandling $error
readonly ILIAS DI Container $dic
static set(string $a_var, $a_val)
Set a value.
static _lookupLogin(int $a_user_id)