19 declare(strict_types=1);
61 private \ILIAS\HTTP\Services
$http;
72 public \ILIAS\DI\RBACServices
$rbac;
89 $this->httpRequest = $DIC->http()->request();
90 $this->
http = $DIC->http();
92 $this->uiFactory = $DIC->ui()->factory();
93 $this->uiRenderer = $DIC->ui()->renderer();
96 $this->ilObjDataCache = $DIC[
'ilObjDataCache'];
98 $this->
ilHelp = $DIC[
'ilHelp'];
99 $this->
rbac = $DIC->rbac();
100 $this->
factory = $DIC->ui()->factory();
101 $this->
renderer = $DIC->ui()->renderer();
105 $this->
ctrl->saveParameter($this, [
'ref_id']);
106 $this->tpl->addJavaScript(
'assets/js/Basic.js');
108 $this->
lng->loadLanguageModule(
'forum');
109 $this->
lng->loadLanguageModule(
'content');
111 $ref_id = $this->retrieveIntOrZeroFrom($this->
http->wrapper()->query(),
'ref_id');
114 $this->is_moderator = $this->
access->checkAccess(
'moderate_frm',
'',
$ref_id);
117 $this->requestAction = (string) ($this->httpRequest->getQueryParams()[
'action'] ??
'');
118 $cs = $DIC->contentStyle();
119 $this->content_style_gui = $cs->gui();
120 if (is_object($this->
object)) {
121 $this->content_style_domain = $cs->domain()->styleForRefId($this->
object->getRefId());
123 $this->in_page_editor_style_context = $this->
http->wrapper()->query()->has(
'page_editor_style');
124 $this->
ctrl->saveParameterByClass(ilObjectContentStyleSettingsGUI::class,
'page_editor_style');
136 if (!is_array($forumValues)) {
141 $threadId = $this->objCurrentTopic->getId();
142 if ($threadId > 0 && !isset($forumValues[$threadId])) {
143 $forumValues[(
int) $threadId] = [];
152 return $this->retrieveIntOrZeroFrom($this->
http->wrapper()->query(),
'thr_pk');
157 return $this->retrieveIntOrZeroFrom(
158 $from_post ? $this->
http->wrapper()->post() : $this->
http->wrapper()->query(),
166 'frm_exp_' . $this->objCurrentTopic->getId(),
176 array $subtree_nodes,
177 array $pagedPostings,
181 if ($firstForumPost->
getId() === $this->objCurrentPost->getId()) {
185 if ($subtree_nodes !== [] && $this->objCurrentPost->getId() > 0) {
186 $isCurrentPostingInPage = array_filter($pagedPostings, fn(
ilForumPost $posting):
bool => (
187 $posting->
getId() === $this->objCurrentPost->getId()
190 if ([] === $isCurrentPostingInPage) {
191 $pageOfCurrentPosting = 0;
193 foreach ($subtree_nodes as $node) {
194 if ($i > 0 && $i % $pageSize === 0) {
195 ++$pageOfCurrentPosting;
198 if ($node->getId() === $this->objCurrentPost->getId()) {
205 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
206 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
207 $this->
ctrl->setParameter($this,
'page', $pageOfCurrentPosting);
208 $this->
ctrl->setParameter(
213 $this->
ctrl->redirect($this,
'viewThread', (
string) $this->objCurrentPost->getId());
222 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
231 $this->tpl->addJavaScript(
'assets/js/autosave_forum.js');
232 $autosave_cmd =
'autosaveDraftAsync';
233 if ($this->objCurrentPost->getId() === 0 && $this->objCurrentPost->getThreadId() === 0) {
234 $autosave_cmd =
'autosaveThreadDraftAsync';
236 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
237 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
240 $this->tpl->addOnLoadCode(
241 "il.Language.setLangVar('saving', " . json_encode($this->
lng->txt(
'saving'), JSON_THROW_ON_ERROR) .
');' 244 $this->tpl->addOnLoadCode(
'il.ForumDraftsAutosave.init(' . json_encode([
247 'interval' => $interval * 1000,
248 'url' => $this->
ctrl->getFormAction($this, $autosave_cmd,
'',
true),
250 'form' =>
'#form_' . $form->
getId()
252 ], JSON_THROW_ON_ERROR) .
');');
259 strtolower($this->
ctrl->getCmd() ??
''),
260 array_map(
'strtolower', [
'createTopLevelPost',
'saveTopLevelPost',
'saveTopLevelDraft']),
268 'enableForumNotification',
269 'disableForumNotification',
270 'toggleThreadNotification' 281 $next_class = $this->
ctrl->getNextClass($this) ??
'';
282 $cmd = $this->
ctrl->getCmd() ??
'';
288 'showThreadNotification',
289 'performPostActivation',
290 'askForPostActivation',
291 'askForPostDeactivation',
292 'toggleThreadNotification',
293 'toggleThreadNotificationTab',
298 'createTopLevelPost',
301 'autosaveDraftAsync',
302 'autosaveThreadDraftAsync',
306 'deliverDraftZipFile',
309 'deleteThreadDrafts',
311 'deletePostingDraft',
314 'confirmDeleteThreadsObject' 317 if (!in_array($cmd, $exclude_cmds,
true)) {
321 if (!$this->creation_mode) {
323 $pos_pk = $this->retrieveIntOrZeroFrom($this->
http->wrapper()->query(),
'pos_pk');
325 $this->selected_post_storage->get($this->objCurrentTopic->getId()) > 0) {
327 $this->selected_post_storage->get($this->objCurrentTopic->getId()) ?? 0,
330 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
332 $this->selected_post_storage->set($this->objCurrentTopic->getId(), 0);
346 $this->
object->getRefId(),
347 ilLink::_getLink($this->
object->getRefId(),
'frm'),
352 switch (strtolower($next_class)) {
353 case strtolower(ilForumPageGUI::class):
354 if (in_array(strtolower($cmd),
array_map(
'strtolower', [
355 self::UI_CMD_COPAGE_DOWNLOAD_FILE,
356 self::UI_CMD_COPAGE_DISPLAY_FULLSCREEN,
357 self::UI_CMD_COPAGE_DOWNLOAD_PARAGRAPH,
361 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
364 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
367 $this->content_style_gui->addCss($this->tpl, $this->ref_id);
368 $this->tpl->setCurrentBlock(
'SyntaxStyle');
370 $this->tpl->parseCurrentBlock();
382 $this->content_style_domain
385 $pageContent = $forwarder->forward();
386 if ($pageContent !==
'') {
387 $this->tpl->setContent($pageContent);
391 case strtolower(ilLearningProgressGUI::class):
393 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
396 $this->tabs_gui->activateTab(
'learning_progress');
398 $usrId = $this->
user->getId();
400 isset($this->request->getQueryParams()[
'user_id']) &&
401 is_numeric($this->request->getQueryParams()[
'user_id'])
403 $usrId = (
int) $this->request->getQueryParams()[
'user_id'];
408 $this->
object->getRefId(),
413 case strtolower(ilObjectContentStyleSettingsGUI::class):
416 if ($this->in_page_editor_style_context) {
417 $this->tabs_gui->setBackTarget(
418 $this->
lng->txt(
'back'),
426 $settings_gui = $this->content_style_gui
427 ->objectSettingsGUIForRefId(
431 $this->
ctrl->forwardCommand($settings_gui);
434 case strtolower(ilForumSettingsGUI::class):
436 $this->
ctrl->forwardCommand($forum_settings_gui);
439 case strtolower(ilRepositoryObjectSearchGUI::class):
442 $this->tabs_gui->activateTab(
'forums_threads');
443 $this->
ctrl->setReturn($this,
'view');
445 $this->
object->getRefId(),
449 $this->
ctrl->forwardCommand($search_gui);
452 case strtolower(ilPermissionGUI::class):
454 $this->
ctrl->forwardCommand($perm_gui);
457 case strtolower(ilForumExportGUI::class):
459 $this->
ctrl->forwardCommand($fex_gui);
460 $this->
http->close();
463 case strtolower(ilForumModeratorsGUI::class):
465 $this->
ctrl->forwardCommand($fm_gui);
468 case strtolower(ilInfoScreenGUI::class):
472 case strtolower(ilColumnGUI::class):
476 case strtolower(ilPublicUserProfileGUI::class):
477 $user = $this->retrieveIntOrZeroFrom($this->
http->wrapper()->query(),
'user');
479 $add = $this->getUserProfileAdditional($this->
object->getRefId(),
$user);
480 $profile_gui->setAdditional($add);
481 $ret = $this->
ctrl->forwardCommand($profile_gui);
482 $this->tpl->setContent($ret);
485 case strtolower(ilObjectCopyGUI::class):
488 $this->
ctrl->forwardCommand($cp);
491 case strtolower(ilExportGUI::class):
492 $this->tabs_gui->activateTab(
'export');
494 $this->
ctrl->forwardCommand($exp);
497 case strtolower(ilRatingGUI::class):
498 if (!$this->objProperties->isIsThreadRatingEnabled() || $this->
user->isAnonymous()) {
499 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
502 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
503 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
509 $rating_gui->setObject(
511 $this->
object->getType(),
512 $this->objCurrentTopic->getId(),
516 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
517 $this->
ctrl->forwardCommand($rating_gui);
521 $this->
object->getType(),
522 $this->objCurrentTopic->getId(),
525 $this->objCurrentTopic->setAverageRating($avg[
'avg']);
526 $this->objCurrentTopic->update();
528 $this->
ctrl->redirect($this,
'showThreads');
531 case strtolower(ilCommonActionDispatcherGUI::class):
533 $this->
ctrl->forwardCommand($gui);
536 case strtolower(ilContainerNewsSettingsGUI::class):
542 $this->
lng->loadLanguageModule(
'cont');
544 $news_set_gui->setNewsBlockForced(
true);
545 $news_set_gui->setPublicNotification(
true);
546 $this->
ctrl->forwardCommand($news_set_gui);
550 if (in_array($cmd, [
'close',
'reopen',
'make_topics_non_sticky',
'makesticky',
'editThread',
'move'])) {
551 $cmd =
'performThreadsAction';
554 $notificationCommands = [
555 'enableAdminForceNoti',
556 'disableAdminForceNoti',
557 'enableHideUserToggleNoti',
558 'disableHideUserToggleNoti' 561 if (!in_array($cmd, $notificationCommands,
true)) {
562 $cmd =
'performThreadsAction';
565 $cmd =
'showThreads';
574 if (!$this->in_page_editor_style_context &&
575 $cmd !==
'viewThreadObject' && $cmd !==
'showUserObject' && !in_array(
576 strtolower($next_class),
577 array_map(
'strtolower', [ilForumPageGUI::class]),
590 if ($this->
http->wrapper()->post()->has(
'selected_cmd')) {
591 $tableCommands[] = $this->
http->wrapper()->post()->retrieve(
593 $this->
refinery->kindlyTo()->string()
596 if ($this->
http->wrapper()->post()->has(
'selected_cmd2')) {
597 $tableCommands[] = $this->
http->wrapper()->post()->retrieve(
599 $this->
refinery->kindlyTo()->string()
603 return $tableCommands;
614 $this->forum_settings_gui->getCustomForm($a_form);
619 $this->forum_settings_gui->getCustomValues($a_values);
624 $this->forum_settings_gui->updateCustomValues($form);
629 if (!$this->is_moderator) {
630 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
633 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
634 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
637 if ($this->objCurrentTopic->getId() === 0) {
644 $title = $this->
getEditTitleModal($this->objCurrentTopic)->withRequest($this->
http->request())->getData();
645 if (array_key_exists(0, $title)) {
646 $new_subject = $title[0];
647 if ($new_subject !==
'') {
648 $this->objCurrentTopic->setSubject($new_subject);
649 $this->objCurrentTopic->updateThreadTitle();
650 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
659 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
660 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
663 $this->
object->markAllThreadsRead($this->
user->getId());
664 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_all_threads_marked_read'));
676 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
677 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
680 $cmd = $this->
ctrl->getCmd();
681 $frm = $this->
object->Forum;
682 $frm->setForumId($this->
object->getId());
683 $frm->setForumRefId($this->
object->getRefId());
684 $frm->setMDB2Wherecondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
686 $frm_object = $frm->getOneTopic();
687 if ($frm_object->getTopPk() > 0) {
688 $frm->setDbTable(
'frm_data');
689 $frm->setMDB2WhereCondition(
'top_pk = %s ', [
'integer'], [$frm_object->getTopPk()]);
690 $frm->updateVisits($frm_object->getTopPk());
694 $this->
object->getRefId(),
695 $this->
object->getId(),
699 if ($cmd !==
'showThreads') {
700 $cmd =
'showThreads';
703 $this->tpl->setPermanentLink($this->
object->getType(), $this->
object->getRefId());
706 $btn = $this->uiFactory->button()
708 $this->
lng->txt(
'forums_new_thread'),
709 $this->
ctrl->getLinkTarget($this,
'createThread')
711 $this->
toolbar->addStickyItem($btn);
718 if ($this->confirmation_gui_html ===
'' && !$this->
user->isAnonymous()) {
720 $this->
lng->txt(
'forums_mark_read'),
721 $this->
ctrl->getLinkTarget($this,
'markAllRead')
723 $this->
ctrl->clearParameters($this);
726 if (!$this->
user->isAnonymous() && $this->
access->checkAccess(
'write',
'', $this->ref_id)) {
727 $this->
lng->loadLanguageModule(
'cntr');
729 $this->uiFactory->button()->standard(
730 $this->
lng->txt(
'cntr_text_media_editor'),
731 $this->
ctrl->getLinkTargetByClass(ilForumPageGUI::class,
'edit')
742 $threads_page = $this->forum_thread_table_session_storage->fetchData($frm, $frm_object);
747 if (count($threads_page->getForumTopics()) > 0) {
748 foreach ($threads_page->getForumTopics() as $thread) {
749 $ref_id = $this->
object->getRefId();
750 $subject = $thread->getSubject();
751 if ($thread->isClosed()) {
752 $subject .=
' (' . $this->
lng->txt(
'forums_closed') .
')';
761 ->withActions($actions)
764 if ($thread->isSticky()) {
765 $top_group[] = $list_item;
767 $thread_group[] = $list_item;
772 $found_threads =
false;
773 if (count($top_group) > 0) {
774 $top_threads = $this->
factory->item()->group($this->
lng->txt(
'top_thema'), $top_group);
775 $found_threads =
true;
777 $top_threads = $this->
factory->item()->group(
'', $top_group);
780 if (count($thread_group) > 0) {
781 $normal_threads = $this->
factory->item()->group($this->
lng->txt(
'thema'), $thread_group);
782 $found_threads =
true;
784 $normal_threads = $this->
factory->item()->group(
'', $thread_group);
787 $url = $this->
http->request()->getRequestTarget();
790 $current_page = $this->
http->wrapper()->query()->retrieve(
797 $view_controls[] = $this->
factory 803 ->withMaxPaginationButtons(5)
804 ->withCurrentPage($current_page);
806 if ($found_threads ===
false) {
807 $vc_container = $this->
factory->panel()->listing()->standard(
808 $this->
lng->txt(
'thread_overview'),
809 [$this->
factory->item()->group($this->
lng->txt(
'frm_no_threads'), [])]
812 $vc_container = $this->
factory->panel()->listing()->standard(
813 $this->
lng->txt(
'thread_overview'),
814 [$top_threads, $normal_threads]
815 )->withViewControls($view_controls);
818 $default_html = $this->
renderer->render($vc_container);
819 $modals = $this->
renderer->render($this->modal_collection);
830 $this->content_style_domain
834 $this->tpl->setContent($forwarder->forward() . $default_html . $modals);
840 $this->
ctrl->setParameter($this,
'page', $offset);
843 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
844 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
845 $base_url = $this->
ctrl->getLinkTarget($this,
'showThreads');
847 $translationKeys = [];
848 foreach (ThreadSortation::cases() as $sortation) {
849 $this->
ctrl->setParameter($this,
'thread_sortation', $sortation->value);
850 $url = $this->
ctrl->getLinkTarget($this,
'showThreads');
852 $translationKeys[
$url] = $this->
lng->txt($sortation->languageId());
854 $this->
ctrl->clearParameters($this);
855 return $this->
factory->viewControl()->sortation(
857 current(array_keys($translationKeys))
859 ->withTargetURL($base_url,
'thread_sortation');
868 $query = $this->
http->wrapper()->query()->has(
'thr_pk');
869 $post = $this->
http->wrapper()->post()->has(
'thread_ids');
871 $thread_ids = $this->
http->wrapper()->post()->retrieve(
876 $thread_ids = $this->
http->wrapper()->query()->retrieve(
890 $this->
ctrl->setParameter($this,
'thr_pk', $forum_topic->
getId());
892 $is_top_thread = $forum_topic->
isSticky();
894 if ($unread_counter === 0) {
897 $unread =
' (' . $unread_counter .
' ' . $this->
lng->txt(
'unread') .
')';
908 $this->
lng->txt(
'forums_created_by') => $authorinfo->getAuthorName(),
909 $this->
lng->txt(
'forums_articles') => $forum_topic->
getNumPosts() . $unread,
910 $this->
lng->txt(
'forums_last_post') => $this->
object->Forum->convertDate($forum_topic->
getLastPost()->getCreateDate()),
914 if ($is_top_thread ===
true) {
915 $is_top_thread = [$this->
lng->txt(
'relevance') => $this->
lng->txt(
'sticky')];
916 $properties = array_merge($properties, $is_top_thread);
919 $rating_property = [];
920 if ($this->objProperties->isIsThreadRatingEnabled()) {
924 $this->
object->getType(),
925 $forum_topic->
getId(),
928 $rating->setUserId($this->
user->getId());
929 $rating_property = [$this->
lng->txt(
'frm_rating') => $rating->getHTML()];
931 $this->
ctrl->setParameter($this,
'thr_pk',
null);
933 return array_merge($properties, $rating_property);
940 ?
int $thread_id =
null 942 $this->
ctrl->setParameter($this,
'ref_id', $ref_id);
943 $this->
ctrl->setParameter($this,
'thr_pk', $thread_id);
944 $this->
ctrl->setParameter($this,
'page', 0);
945 $url = $this->
ctrl->getLinkTarget($this, $cmd);
946 $this->
ctrl->setParameter($this,
'ref_id',
null);
947 $this->
ctrl->setParameter($this,
'thr_pk',
null);
948 $this->
ctrl->setParameter($this,
'page',
null);
950 return $this->uiFactory->link()->standard($title,
$url);
955 $actions = $this->uiFactory->dropdown()->standard([]);
956 if ($this->is_moderator) {
960 $this->modal_collection[] = $edit_title_modal;
961 $edit_title = $this->
factory->button()->shy($this->
lng->txt(
'frm_edit_title'),
'#')->withOnClick(
962 $edit_title_modal->getShowSignal()
967 $this->
lng->txt(
'move_thread_to_forum'),
969 $forum_topic->
getId()
973 $this->
lng->txt(
'merge_posts_into_thread'),
975 $forum_topic->
getId()
979 $this->
lng->txt(
'delete_thread'),
980 'confirmDeleteThreads',
981 $forum_topic->
getId()
983 $actions = $this->uiFactory->dropdown()->standard([
998 $topic_id = $this->
refinery->kindlyTo()->string()->transform($topic->
getId());
999 $this->
ctrl->setParameter($this,
'thr_pk', (
string) $topic_id);
1000 $target = $this->
ctrl->getLinkTargetByClass(
1001 ilObjForumGUI::class,
1004 $this->
ctrl->setParameter($this,
'thread_id',
null);
1006 return $this->
factory->modal()->roundtrip(
1007 $this->
lng->txt(
'frm_edit_title'),
1019 $this->
user->getId(),
1022 if ($drafts === []) {
1035 $this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()),
1039 'tpl.forums_threads_liste.html',
1042 'components/ILIAS/Forum' 1044 $threadsTemplate->setVariable(
'THREADS_DRAFTS_TABLE', $this->uiRenderer->render($table->getComponent()));
1046 $draft_modal = $this->
factory->modal()->roundtrip(
1047 $this->
lng->txt(
'drafts'),
1048 [$this->
factory->legacy()->content($threadsTemplate->get())]
1050 $this->modal_collection[] = $draft_modal;
1051 $edit_title = $this->
factory->button()->standard($this->
lng->txt(
'drafts'),
'#')->withOnClick(
1052 $draft_modal->getShowSignal()
1054 $this->
toolbar->addComponent($edit_title);
1061 $this->
lng->txt($forum_topic->
isSticky() ?
'make_topics_non_sticky' :
'make_topics_sticky'),
1062 $forum_topic->
isSticky() ?
'make_topics_non_sticky' :
'makesticky',
1063 $forum_topic->
getId()
1071 $this->
lng->txt($forum_topic->
isClosed() ?
'reopen_topics' :
'close_topics'),
1072 $forum_topic->
isClosed() ?
'reopen' :
'close',
1073 $forum_topic->
getId()
1082 $df = new \ILIAS\Data\Factory();
1083 $list_item = $list_item->withColor($df->color(
'#B54F00'));
1091 $this->content_style_gui->addCss($this->tpl, $this->ref_id);
1092 $this->tpl->setCurrentBlock(
'SyntaxStyle');
1094 $this->tpl->parseCurrentBlock();
1099 $this->content_style_gui->redirectToObjectSettings();
1111 $frm = $this->
object->Forum;
1114 foreach ($drafts as $draft) {
1117 ksort($filesOfDraft);
1119 if ($action !==
'showdraft' && $filesOfDraft !== []) {
1120 foreach ($filesOfDraft as $file) {
1122 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
1123 $this->
ctrl->setParameter($this,
'file', $file[
'md5']);
1124 $tpl->
setVariable(
'HREF_DOWNLOAD', $this->
ctrl->getLinkTarget($this,
'viewThread'));
1126 $this->
ctrl->setParameter($this,
'file',
'');
1127 $this->
ctrl->setParameter($this,
'draft_id',
'');
1128 $this->
ctrl->clearParameters($this);
1133 $tpl->
setVariable(
'TXT_ATTACHMENTS_DOWNLOAD', $this->
lng->txt(
'forums_attachments'));
1136 $this->uiRenderer->render(
1137 $this->uiFactory->symbol()->glyph()->attachment($this->
lng->txt(
'forums_download_attachment'))
1140 if (count($filesOfDraft) > 1) {
1141 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
1142 $download_zip_button = $this->uiFactory->button()
1144 $this->
lng->txt(
'download'),
1145 $this->
ctrl->getLinkTarget($this,
'deliverDraftZipFile')
1147 $this->
ctrl->setParameter($this,
'draft_id',
'');
1148 $tpl->
setVariable(
'DOWNLOAD_ZIP', $this->uiRenderer->render($download_zip_button));
1153 $page = $this->
http->wrapper()->query()->retrieve(
1155 $this->
refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->
refinery->always(0)])
1167 $rowCol =
'tblrowmarked';
1169 $depth = $referencePosting->
getDepth() - 1;
1175 $this->
ctrl->setParameter($this,
'pos_pk', $referencePosting->
getId());
1176 $this->
ctrl->setParameter($this,
'thr_pk', $referencePosting->
getThreadId());
1177 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
1179 $backurl = urlencode($this->
ctrl->getLinkTarget($this,
'viewThread', (
string) $referencePosting->
getId()));
1181 $this->
ctrl->setParameter($this,
'backurl', $backurl);
1182 $this->
ctrl->setParameter($this,
'thr_pk', $referencePosting->
getThreadId());
1183 $this->
ctrl->setParameter($this,
'user', $draft->getPostDisplayUserId());
1186 $draft->getPostAuthorId(),
1187 $draft->getPostDisplayUserId(),
1188 $draft->getPostUserAlias(),
1191 'href' => $this->
ctrl->getLinkTarget($this,
'showUser')
1195 $this->
ctrl->clearParameters($this);
1197 if ($authorinfo->hasSuffix()) {
1198 $tpl->
setVariable(
'AUTHOR', $authorinfo->getSuffix());
1199 $tpl->
setVariable(
'USR_NAME', $draft->getPostUserAlias());
1201 $tpl->
setVariable(
'AUTHOR', $authorinfo->getLinkedAuthorShortName());
1202 if ($authorinfo->getAuthorName(
true) && !$this->objProperties->isAnonymized()) {
1203 $tpl->
setVariable(
'USR_NAME', $authorinfo->getAuthorName(
true));
1206 $tpl->
setVariable(
'DRAFT_ANCHOR',
'draft_' . $draft->getDraftId());
1208 $tpl->
setVariable(
'USR_IMAGE', $authorinfo->getProfilePicture());
1214 $this->
object->getRefId(),
1215 $draft->getPostAuthorId()
1217 if ($authorinfo->getAuthor()->getGender() ===
'f') {
1219 } elseif ($authorinfo->getAuthor()->getGender() ===
'm') {
1221 } elseif ($authorinfo->getAuthor()->getGender() ===
'n') {
1226 if ($draft->getUpdateUserId() > 0) {
1227 $draft->setPostUpdate($draft->getPostUpdate());
1229 $this->
ctrl->setParameter($this,
'backurl', $backurl);
1230 $this->
ctrl->setParameter($this,
'thr_pk', $referencePosting->
getThreadId());
1232 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
1235 $draft->getPostAuthorId(),
1237 $draft->getPostDisplayUserId(),
1238 $draft->getPostUserAlias(),
1240 [
'href' => $this->
ctrl->getLinkTarget($this,
'showUser')]
1243 $this->
ctrl->clearParameters($this);
1247 $this->
lng->txt(
'edited_on') .
': ' . $frm->convertDate($draft->getPostUpdate()) .
' - ' . strtolower($this->
lng->txt(
'by'))
1249 $tpl->
setVariable(
'UPDATE_AUTHOR', $authorinfo->getLinkedAuthorShortName());
1250 if ($authorinfo->getAuthorName(
true) && !$this->objProperties->isAnonymized() && !$authorinfo->hasSuffix()) {
1251 $tpl->
setVariable(
'UPDATE_USR_NAME', $authorinfo->getAuthorName(
true));
1255 $draft->setPostMessage($frm->prepareText($draft->getPostMessage()));
1257 $tpl->
setVariable(
'SUBJECT', $draft->getPostSubject());
1258 $tpl->
setVariable(
'POST_DATE', $frm->convertDate($draft->getPostDate()));
1260 $tpl->
setVariable(
'POST_DRAFT_TEXT', $this->
lng->txt(
'post_draft_info'));
1262 if (!$referencePosting->
isCensored() || ($this->objCurrentPost->getId() === $referencePosting->
getId() && $action ===
'censor')) {
1265 $spanClass =
'moderator';
1268 if ($draft->getPostMessage() === strip_tags($draft->getPostMessage())) {
1270 $draft->setPostMessage(nl2br($draft->getPostMessage()));
1273 if ($spanClass !==
'') {
1277 $draft->getPostMessage(),
1286 if ($action ===
'editdraft' && $draft->getDraftId() === $draft_id) {
1289 if (!$this->objCurrentTopic->isClosed() && in_array($this->requestAction, [
'showdraft',
'editdraft'])) {
1293 $tpl->
setVariable(
'EDIT_DRAFT_ANCHOR',
'draft_edit_' . $draft->getDraftId());
1309 $frm = $this->
object->Forum;
1314 ksort($filesOfPost);
1315 if ($filesOfPost !== [] && ($action !==
'showedit' || $node->
getId() !== $this->objCurrentPost->getId())) {
1316 foreach ($filesOfPost as $file) {
1318 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
1319 $this->
ctrl->setParameter($this,
'file', $file[
'md5']);
1320 $tpl->
setVariable(
'HREF_DOWNLOAD', $this->
ctrl->getLinkTarget($this,
'viewThread'));
1322 $this->
ctrl->clearParameters($this);
1326 $tpl->
setVariable(
'TXT_ATTACHMENTS_DOWNLOAD', $this->
lng->txt(
'forums_attachments'));
1329 $this->uiRenderer->render(
1330 $this->uiFactory->symbol()->glyph()->attachment($this->
lng->txt(
'forums_download_attachment'))
1333 if (count($filesOfPost) > 1) {
1334 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
1335 $download_zip_button = $this->uiFactory->button()
1337 $this->
lng->txt(
'download'),
1338 $this->
ctrl->getLinkTarget($this,
'deliverZipFile')
1340 $tpl->
setVariable(
'DOWNLOAD_ZIP', $this->uiRenderer->render($download_zip_button));
1347 $tpl->
setVariable(
'TXT_PERMA_LINK', $this->
lng->txt(
'perma_link'));
1351 if (($this->is_moderator || $node->
isOwner($this->user->getId())) && !$node->
isActivated() && !$this->objCurrentTopic->isClosed()) {
1352 $rowCol =
'ilPostingNeedsActivation';
1353 } elseif ($this->objProperties->getMarkModeratorPosts()) {
1356 $rowCol =
'ilModeratorPosting';
1358 $rowCol =
'ilModeratorPosting';
1364 $this->objCurrentPost->getId() !== $node->
getId()
1368 $rowCol =
'tblrowmarked';
1372 if ($action !==
'censor') {
1373 $tpl->
setVariable(
'TXT_CENSORSHIP_ADVICE', $this->
lng->txt(
'post_censored_comment_by_moderator'));
1376 $rowCol =
'tblrowmarked';
1382 $tpl->
setVariable(
'POST_NOT_ACTIVATED_YET', $this->
lng->txt(
'frm_post_not_activated_yet'));
1385 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
1387 $backurl = urlencode($this->
ctrl->getLinkTarget($this,
'viewThread', (
string) $node->
getId()));
1388 $this->
ctrl->clearParameters($this);
1390 $this->
ctrl->setParameter($this,
'backurl', $backurl);
1399 'href' => $this->
ctrl->getLinkTarget($this,
'showUser')
1402 $this->
ctrl->clearParameters($this);
1404 if ($authorinfo->hasSuffix()) {
1405 if (!$authorinfo->isDeleted()) {
1406 $tpl->
setVariable(
'USR_NAME', $authorinfo->getAlias());
1408 $tpl->
setVariable(
'AUTHOR', $authorinfo->getSuffix());
1410 if ($authorinfo->getAuthorName(
true) && !$this->objProperties->isAnonymized()) {
1411 $tpl->
setVariable(
'USR_NAME', $authorinfo->getAuthorName(
true));
1413 $tpl->
setVariable(
'AUTHOR', $authorinfo->getLinkedAuthorShortName());
1416 $tpl->
setVariable(
'USR_IMAGE', $authorinfo->getProfilePicture());
1422 if ($isModerator && $authorinfo->getAuthor()->getId()) {
1423 $authorRole = $this->
lng->txt(
'frm_moderator_n');
1424 if (is_string($authorinfo->getAuthor()->getGender()) && $authorinfo->getAuthor()->getGender() !==
'') {
1425 $authorRole = $this->
lng->txt(
'frm_moderator_' . $authorinfo->getAuthor()->getGender());
1433 $this->
ctrl->setParameter($this,
'backurl', $backurl);
1446 'href' => $this->
ctrl->getLinkTarget($this,
'showUser')
1449 $this->
ctrl->clearParameters($this);
1453 $this->
lng->txt(
'edited_on') .
': ' . $frm->convertDate($node->
getChangeDate()) .
' - ' . strtolower($this->
lng->txt(
'by'))
1455 $tpl->
setVariable(
'UPDATE_AUTHOR', $authorinfo->getLinkedAuthorShortName());
1456 if ($authorinfo->getAuthorName(
true) && !$this->objProperties->isAnonymized() && !$authorinfo->hasSuffix()) {
1457 $tpl->
setVariable(
'UPDATE_USR_NAME', $authorinfo->getAuthorName(
true));
1462 && $node->
getId() !== $this->selected_post_storage->get($node->
getThreadId())) {
1463 $target = $this->uiFactory->symbol()->icon()->custom(
1465 $this->
lng->txt(
'target_select')
1468 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
1473 $this->uiRenderer->render(
1474 $this->uiFactory->link()->bulky(
1476 $this->
lng->txt(
'select'),
1477 new \ILIAS\Data\URI(
1478 ILIAS_HTTP_PATH .
'/' . $this->
ctrl->getLinkTarget($this,
'selectPost', (
string) $node->
getId())
1490 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
1492 $this->
ctrl->setParameter($this,
'page', $pageIndex);
1493 $this->
ctrl->setParameter(
1498 $this->
ctrl->setParameter($this,
'viewmode', $this->selectedSorting);
1499 $mark_post_target = $this->
ctrl->getLinkTarget($this,
'markPostRead', (
string) $node->
getId());
1503 '<a href="' . $mark_post_target .
'"><b>' . $node->
getSubject() .
'</b></a>' 1509 if (!$node->
isCensored() || ($this->objCurrentPost->getId() === $node->
getId() && $action ===
'censor')) {
1512 $spanClass =
'moderator';
1521 if ($spanClass !==
'') {
1524 '<span class="' . $spanClass .
'">' .
1543 $thr_pk = (
int) $this->httpRequest->getQueryParams()[
'thr_pk'];
1544 $pos_pk = (
int) $this->httpRequest->getQueryParams()[
'pos_pk'];
1546 $this->selected_post_storage->set(
1559 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'frm_added'),
true);
1560 $this->
ctrl->setParameter($this,
'ref_id', $new_object->
getRefId());
1561 $this->
ctrl->redirect($this,
'createThread');
1566 if ($this->in_page_editor_style_context) {
1570 $this->
ilHelp->setScreenIdComponent(
'frm');
1572 $this->
ctrl->setParameter($this,
'ref_id', $this->ref_id);
1579 'enableForumNotification',
1580 'disableForumNotification',
1582 'performMoveThreads',
1583 'cancelMoveThreads',
1584 'performThreadsAction',
1588 'confirmDeleteThreads',
1591 'performMergeThreads' 1594 $force_active =
false;
1595 if (in_array($this->
ctrl->getCmd(), $active,
true)) {
1596 $force_active =
true;
1599 if ($this->
access->checkAccess(
1604 $this->tabs_gui->addTarget(
1605 self::UI_TAB_ID_THREADS,
1606 $this->
ctrl->getLinkTarget($this,
'showThreads'),
1607 $this->
ctrl->getCmd(),
1614 if ($this->
access->checkAccess(
'visible',
'', $this->ref_id) || $this->
access->checkAccess(
1619 $cmdClass = $this->
http->wrapper()->query()->retrieve(
1621 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
1624 $force_active = $this->
ctrl->getNextClass() ===
'ilinfoscreengui' || strtolower($cmdClass) ===
'ilnotegui';
1625 $this->tabs_gui->addTarget(
1626 self::UI_TAB_ID_INFO,
1627 $this->
ctrl->getLinkTargetByClass([self::class, ilInfoScreenGUI::class],
'showSummary'),
1628 [
'showSummary',
'infoScreen'],
1635 if ($this->
access->checkAccess(
'write',
'', $this->ref_id)) {
1636 $force_active = $this->
ctrl->getCmd() ===
'edit';
1637 $this->tabs_gui->addTarget(
1638 self::UI_TAB_ID_SETTINGS,
1639 $this->
ctrl->getLinkTarget($this,
'edit'),
1647 if ($this->
access->checkAccess(
'write',
'', $this->ref_id)) {
1648 $this->tabs_gui->addTarget(
1649 self::UI_TAB_ID_MODERATORS,
1650 $this->
ctrl->getLinkTargetByClass(ilForumModeratorsGUI::class,
'showModerators'),
1657 $this->tabs_gui->addTab(
1658 'learning_progress',
1659 $this->
lng->txt(
'learning_progress'),
1660 $this->
ctrl->getLinkTargetByClass(ilLearningProgressGUI::class)
1664 if ($this->
settings->get(
'enable_fora_statistics',
'0')) {
1665 $hasStatisticsAccess = $this->
access->checkAccess(
'write',
'', $this->ref_id);
1666 if (!$hasStatisticsAccess) {
1667 $hasStatisticsAccess = (
1668 $this->objProperties->isStatisticEnabled() &&
1669 $this->
access->checkAccess(
'read',
'', $this->ref_id)
1673 if ($hasStatisticsAccess) {
1674 $force_active = $this->
ctrl->getCmd() ===
'showStatistics';
1675 $this->tabs_gui->addTarget(
1676 self::UI_TAB_ID_STATS,
1677 $this->
ctrl->getLinkTarget($this,
'showStatistics'),
1686 if ($this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
1687 $this->tabs_gui->addTarget(
1688 self::UI_TAB_ID_EXPORT,
1689 $this->
ctrl->getLinkTargetByClass(ilExportGUI::class,
''),
1695 if ($this->
access->checkAccess(
'edit_permission',
'', $this->ref_id)) {
1696 $this->tabs_gui->addTarget(
1697 self::UI_TAB_ID_PERMISSIONS,
1698 $this->
ctrl->getLinkTargetByClass([static::class, ilPermissionGUI::class],
'perm'),
1699 [
'perm',
'info',
'owner'],
1707 if (!$this->
settings->get(
'enable_fora_statistics',
'0')) {
1708 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1711 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1712 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1715 if (!$this->objProperties->isStatisticEnabled()) {
1716 if ($this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
1717 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'frm_statistics_disabled_for_participants'));
1719 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1723 $this->
object->Forum->setForumId($this->
object->getId());
1725 $tbl = new \ILIAS\Forum\Statistics\ForumStatisticsTable(
1727 $this->objProperties,
1729 $this->
access->checkRbacOrPositionPermissionAccess(
1730 'read_learning_progress',
1731 'read_learning_progress',
1732 $this->object->getRefId()
1739 $this->tpl->setContent($this->uiRenderer->render($tbl->getComponent()));
1742 public static function _goto($a_target, $a_thread = 0, $a_posting = 0): void
1745 $main_tpl = $DIC->ui()->mainTemplate();
1747 $ilAccess = $DIC->access();
1748 $lng = $DIC->language();
1751 $a_target = is_numeric($a_target) ? (
int) $a_target : 0;
1752 $a_thread = is_numeric($a_thread) ? (
int) $a_thread : 0;
1753 if ($ilAccess->checkAccess(
'read',
'', $a_target)) {
1754 if ($a_thread !== 0) {
1756 if ($objTopic->getFrmObjId() &&
1759 foreach ($ref_ids as
$ref_id) {
1760 if ($ilAccess->checkAccess(
'read',
'', $ref_id)) {
1766 if (isset($new_ref_id) && $new_ref_id !== $a_target) {
1767 $DIC->ctrl()->redirectToURL(
1768 ILIAS_HTTP_PATH .
'/goto.php?target=frm_' . $new_ref_id .
'_' . $a_thread .
'_' . $a_posting
1773 $DIC->ctrl()->setParameterByClass(self::class,
'ref_id', (
string) ((
int) $a_target));
1774 if (is_numeric($a_thread)) {
1775 $DIC->ctrl()->setParameterByClass(self::class,
'thr_pk', (
string) ((
int) $a_thread));
1777 if (is_numeric($a_posting)) {
1778 $DIC->ctrl()->setParameterByClass(self::class,
'pos_pk', (
string) ((
int) $a_posting));
1780 $DIC->ctrl()->redirectByClass(
1781 [ilRepositoryGUI::class, self::class],
1783 is_numeric($a_posting) ? (
string) ((
int) $a_posting) :
'' 1786 $DIC->ctrl()->setParameterByClass(self::class,
'ref_id', $a_target);
1787 $DIC->ctrl()->redirectByClass([ilRepositoryGUI::class, self::class,],
'');
1788 $DIC->http()->close();
1790 } elseif ($ilAccess->checkAccess(
'visible',
'', $a_target)) {
1791 $DIC->ctrl()->setParameterByClass(ilInfoScreenGUI::class,
'ref_id', $a_target);
1792 $DIC->ctrl()->redirectByClass(
1794 ilRepositoryGUI::class,
1796 ilInfoScreenGUI::class
1801 $main_tpl->setOnScreenMessage(
'info', sprintf(
1802 $lng->
txt(
'msg_no_perm_read_item'),
1805 $DIC->http()->close();
1814 if ($threadIds === []) {
1815 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'),
true);
1816 $this->
ctrl->redirect($this,
'showThreads');
1819 if (!$this->is_moderator) {
1820 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1823 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1824 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1828 $this->objProperties->setObjId($forumObj->getId());
1832 $success_message =
'forums_thread_deleted';
1833 if (count($threadIds) > 1) {
1834 $success_message =
'forums_threads_deleted';
1838 array_walk($threadIds,
function (
int $threadId) use (&$threads):
void {
1842 $threads[] = $thread;
1845 $frm->setForumId($forumObj->getId());
1846 $frm->setForumRefId($forumObj->getRefId());
1847 foreach ($threads as $thread) {
1848 $first_node = $frm->getFirstPostNode($thread->getId());
1849 if (isset($first_node[
'pos_pk']) && (
int) $first_node[
'pos_pk']) {
1850 $frm->deletePost((
int) $first_node[
'pos_pk']);
1851 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt($success_message),
true);
1854 $this->
ctrl->redirect($this,
'showThreads');
1857 public function confirmDeleteThreadsObject():
void 1860 if ($thread_ids === []) {
1861 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'));
1862 $this->
ctrl->redirect($this,
'showThreads');
1865 if (!$this->is_moderator) {
1866 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1869 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1870 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1875 array_walk($thread_ids,
function (
int $threadId) use (&$threads):
void {
1879 $threads[] = $thread;
1884 $c_gui->setFormAction($this->
ctrl->getFormAction($this,
'performDeleteThreads'));
1885 $c_gui->setHeaderText($this->
lng->txt(
'frm_sure_delete_threads'));
1886 $c_gui->setCancel($this->
lng->txt(
'cancel'),
'showThreads');
1887 $c_gui->setConfirm($this->
lng->txt(
'confirm'),
'performDeleteThreads');
1889 foreach ($threads as $thread) {
1890 $c_gui->addItem(
'thread_ids[]', (
string) $thread->getId(), $thread->getSubject());
1893 $this->confirmation_gui_html = $c_gui->getHTML();
1896 $this->tpl->setContent($c_gui->getHTML());
1901 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1902 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1905 $draft_ids = $this->
http->wrapper()->query()->retrieve(
1906 'forum_drafts_delete_draft_ids',
1908 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
1913 if ($draft_ids === []) {
1914 $draft_ids = $this->
http->wrapper()->query()->retrieve(
1915 'forum_drafts_delete_draft_ids',
1917 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->string()),
1922 if (!isset($draft_ids[0]) || $draft_ids[0] !==
'ALL_OBJECTS') {
1923 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'));
1929 static function (array $draft):
int {
1930 return $draft[
'draft_id'] ?? 0;
1933 $this->
user->getId(),
1940 $confirmation->setFormAction($this->
ctrl->getFormAction($this,
'deleteThreadDrafts'));
1941 $confirmation->setHeaderText($this->
lng->txt(
'sure_delete_drafts'));
1942 $confirmation->setCancel($this->
lng->txt(
'cancel'),
'showThreads');
1943 $confirmation->setConfirm($this->
lng->txt(
'confirm'),
'deleteThreadDrafts');
1945 foreach ($draft_ids as $draftId) {
1946 if (array_key_exists($draftId, $instances)) {
1947 $confirmation->addItem(
'draft_ids[]', (
string) $draftId, $instances[$draftId]->getPostSubject());
1951 $this->tpl->setContent($confirmation->getHTML());
1954 public function prepareThreadScreen(
ilObjForum $a_forum_obj):
void 1956 $this->
ilHelp->setScreenIdComponent(
'frm');
1958 $this->tpl->loadStandardTemplate();
1962 $this->tabs_gui->setBackTarget(
1963 $this->
lng->txt(
'frm_all_threads'),
1964 $this->
ctrl->getLinkTarget(
1971 $frm = $a_forum_obj->Forum;
1972 $frm->setForumId($a_forum_obj->
getId());
1977 if (!$this->is_moderator) {
1978 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1981 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1982 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1987 $this->objCurrentPost->activatePost();
1988 $GLOBALS[
'ilAppEventHandler']->raise(
1989 'components/ILIAS/Forum',
1992 'object' => $this->
object,
1993 'ref_id' => $this->
object->getRefId(),
1997 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_post_was_activated'),
true);
2005 !$this->
user->isAnonymous() &&
2006 !$this->objCurrentTopic->isClosed() && (
2007 $this->is_moderator ||
2008 ($this->objCurrentPost->isOwner($this->
user->getId()) && !$this->objCurrentPost->hasReplies())
2014 $forumObj = $oForumObjects[
'forumObj'];
2017 $frm->setForumId($forumObj->getId());
2018 $frm->setForumRefId($forumObj->getRefId());
2019 $dead_thr = $frm->deletePost($this->objCurrentPost->getId());
2022 if ($dead_thr === $this->objCurrentTopic->getId()) {
2023 $frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$forumObj->getId()]);
2024 $topicData = $frm->getOneTopic();
2025 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_post_deleted'),
true);
2026 if ($topicData->getTopNumThreads() > 0) {
2027 $this->
ctrl->redirect($this,
'showThreads');
2029 $this->
ctrl->redirect($this,
'createThread');
2032 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_post_deleted'),
true);
2033 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
2034 $this->
ctrl->redirect($this,
'viewThread');
2037 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2058 foreach ($this->modalActionsContainer as $modal) {
2059 $modalString .= $this->uiRenderer->render($modal);
2062 return $modalString;
2068 if ($this->is_moderator && !$this->objCurrentTopic->isClosed()) {
2069 if ($this->
http->wrapper()->post()->has(
'formData')) {
2070 $formData = $this->
http->wrapper()->post()->retrieve(
2077 if (
$message ===
'' && $this->
http->wrapper()->post()->has(
'cens_message')) {
2078 $cens_message = $this->
http->wrapper()->post()->retrieve(
2080 $this->
refinery->kindlyTo()->string()
2087 $frm = $oForumObjects[
'frm'];
2090 $frm->postCensorship($this->
object,
$message, $this->objCurrentPost->getId());
2091 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'frm_censorship_revoked'));
2093 $frm->postCensorship($this->
object,
$message, $this->objCurrentPost->getId(), 1);
2094 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'frm_censorship_applied'));
2101 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2106 if (!$this->is_moderator) {
2107 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2110 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
2111 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2121 $this->display_confirm_post_activation = $status;
2131 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
2132 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2137 if ($this->objCurrentTopic->isNotificationEnabled($this->user->getId())) {
2138 $this->objCurrentTopic->disableNotification($this->
user->getId());
2139 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_notification_disabled'),
true);
2141 $this->objCurrentTopic->enableNotification($this->
user->getId());
2142 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_notification_enabled'),
true);
2145 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
2146 $this->
ctrl->redirect($this,
'viewThread');
2151 if (!$this->is_moderator) {
2152 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2155 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
2156 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2161 if ($this->objCurrentTopic->isSticky()) {
2162 $this->objCurrentTopic->unmakeSticky();
2164 $this->objCurrentTopic->makeSticky();
2172 $this->requestAction =
'';
2174 if ($draft_id > 0) {
2177 $draft->deleteDraftsByDraftIds([$draft_id]);
2186 $this->requestAction =
'';
2188 if ($draft_id > 0) {
2190 $history_entry->populateWithFirstAutosaveByDraftId($draft_id);
2193 $draft->setPostSubject($history_entry->getPostSubject());
2194 $draft->setPostMessage($history_entry->getPostMessage());
2197 $history_entry->getPostMessage(),
2199 $history_entry->getHistoryId(),
2201 $draft->getDraftId()
2204 $draft->updateDraft();
2206 $history_entry->deleteHistoryByDraftIds([$draft->getDraftId()]);
2210 $this->
ctrl->clearParameters($this);
2217 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
2219 $this->
ctrl->setParameter(
2224 $form->setFormAction($this->
ctrl->getFormAction($this,
'performPostActivation'));
2225 $this->
ctrl->clearParameters($this);
2226 $form->setId(
'frm_activate_post_' . $node->
getId());
2227 $form_id = $form->getId();
2228 $message = $this->uiFactory->messageBox()->confirmation($this->
lng->txt(
'activate_post_txt'));
2229 $submitBtn = $this->uiFactory->button()->primary(
2230 $this->
lng->txt(
'activate_only_current'),
2233 static function (
string $id) use ($form_id):
string {
2236 const button = document.getElementById('$id'); 2237 if (!button) return; 2239 const form = document.getElementById('form_$form_id'); 2242 button.addEventListener('click', (event) => { 2243 event.preventDefault(); 2250 $modal = $this->uiFactory->modal()->roundtrip(
2251 $this->
lng->txt(
'activate_only_current'),
2252 [$this->uifactory->legacy()->content($form->getHTML()),
$message]
2253 )->withActionButtons([$submitBtn]);
2254 $action_button = $this->uiFactory->button()->standard($this->
lng->txt(
'activate_post'),
'#')->withOnClick(
2255 $modal->getShowSignal()
2257 $this->modalActionsContainer[] = $modal;
2258 $this->
ctrl->clearParameters($this);
2260 return $action_button;
2263 public function getCensorshipFormHTML():
string 2266 $frm = $this->
object->Forum;
2267 $form_tpl =
new ilTemplate(
'tpl.frm_censorship_post_form.html',
true,
true,
'components/ILIAS/Forum');
2269 $form_tpl->setVariable(
'ANCHOR', $this->objCurrentPost->getId());
2270 $form_tpl->setVariable(
'SPACER',
'<hr noshade="noshade" width="100%" size="1" align="center" />');
2271 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
2272 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
2273 $this->
ctrl->setParameter(
2278 $form_tpl->setVariable(
'FORM_ACTION', $this->
ctrl->getFormAction($this,
'viewThread'));
2279 $this->
ctrl->clearParameters($this);
2280 $form_tpl->setVariable(
'TXT_CENS_MESSAGE', $this->
lng->txt(
'forums_the_post'));
2281 $form_tpl->setVariable(
'TXT_CENS_COMMENT', $this->
lng->txt(
'forums_censor_comment') .
':');
2282 $form_tpl->setVariable(
'CENS_MESSAGE', $frm->prepareText((
string) $this->objCurrentPost->getCensorshipComment(), 2));
2284 if ($this->objCurrentPost->isCensored()) {
2285 $form_tpl->setVariable(
'TXT_CENS', $this->
lng->txt(
'forums_info_censor2_post'));
2286 $form_tpl->setVariable(
'YES_BUTTON', $this->
lng->txt(
'confirm'));
2287 $form_tpl->setVariable(
'NO_BUTTON', $this->
lng->txt(
'cancel'));
2288 $form_tpl->setVariable(
'CMD_REVOKE_CENSORSHIP',
'revokeCensorship');
2289 $form_tpl->setVariable(
'CMD_CANCEL_REVOKE_CENSORSHIP',
'viewThread');
2291 $form_tpl->setVariable(
'TXT_CENS', $this->
lng->txt(
'forums_info_censor_post'));
2292 $form_tpl->setVariable(
'CANCEL_BUTTON', $this->
lng->txt(
'cancel'));
2293 $form_tpl->setVariable(
'CONFIRM_BUTTON', $this->
lng->txt(
'confirm'));
2294 $form_tpl->setVariable(
'CMD_ADD_CENSORSHIP',
'addCensorship');
2295 $form_tpl->setVariable(
'CMD_CANCEL_ADD_CENSORSHIP',
'viewThread');
2298 return $form_tpl->get();
2303 $isReply = in_array($this->requestAction, [
'showreply',
'ready_showreply']);
2304 $isDraft = in_array($this->requestAction, [
'publishDraft',
'editdraft']);
2310 $frm = $oForumObjects[
'frm'];
2311 $oFDForum = $oForumObjects[
'file_obj'];
2314 $this->replyEditForm->setId(
'id_showreply');
2315 $this->replyEditForm->setTableWidth(
'100%');
2316 $cancel_cmd =
'cancelPost';
2317 if (in_array($this->requestAction, [
'showreply',
'ready_showreply'])) {
2318 $this->
ctrl->setParameter($this,
'action',
'ready_showreply');
2319 } elseif (in_array($this->requestAction, [
'showdraft',
'editdraft'])) {
2320 $this->
ctrl->setParameter($this,
'action', $this->requestAction);
2321 $this->
ctrl->setParameter($this,
'draft_id', $draft_id);
2323 $this->
ctrl->setParameter($this,
'action',
'ready_showedit');
2326 $this->
ctrl->setParameter($this,
'page', (
int) ($this->httpRequest->getQueryParams()[
'page'] ?? 0));
2327 $this->
ctrl->setParameter(
2332 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
2333 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
2335 $this->replyEditForm->setFormAction(
2336 $this->
ctrl->getFormAction($this,
'saveTopLevelPost',
'frm_page_bottom')
2338 } elseif (in_array($this->requestAction, [
'publishDraft',
'editdraft'])) {
2339 $this->replyEditForm->setFormAction(
2340 $this->
ctrl->getFormAction($this,
'publishDraft', (
string) $this->objCurrentPost->getId())
2343 $this->replyEditForm->setFormAction(
2344 $this->
ctrl->getFormAction($this,
'savePost', (
string) $this->objCurrentPost->getId())
2347 $this->
ctrl->clearParameters($this);
2350 $this->replyEditForm->setTitle($this->
lng->txt(
'forums_your_reply'));
2351 } elseif ($isDraft) {
2352 $this->replyEditForm->setTitle($this->
lng->txt(
'forums_edit_draft'));
2354 $this->replyEditForm->setTitle($this->
lng->txt(
'forums_edit_post'));
2359 in_array($this->requestAction, [
'showreply',
'ready_showreply',
'editdraft'])
2361 $oAnonymousNameGUI =
new ilTextInputGUI($this->
lng->txt(
'forums_your_name'),
'alias');
2362 $oAnonymousNameGUI->setMaxLength(64);
2363 $oAnonymousNameGUI->setInfo(sprintf($this->
lng->txt(
'forums_use_alias'), $this->
lng->txt(
'forums_anonymous')));
2365 $this->replyEditForm->addItem($oAnonymousNameGUI);
2368 $oSubjectGUI =
new ilTextInputGUI($this->
lng->txt(
'forums_subject'),
'subject');
2369 $oSubjectGUI->setMaxLength(255);
2370 $oSubjectGUI->setRequired(
true);
2372 if ($this->objProperties->getSubjectSetting() ===
'empty_subject') {
2373 $oSubjectGUI->setInfo($this->
lng->txt(
'enter_new_subject'));
2376 $this->replyEditForm->addItem($oSubjectGUI);
2379 $isReply ? $this->
lng->txt(
'forums_your_reply') : $this->
lng->txt(
'forums_edit_post'),
2383 $oPostGUI->setRows(15);
2384 $oPostGUI->setUseRte(
true);
2388 ($isReply && $this->objCurrentPost->getDepth() >= 2) ||
2389 (!$isDraft && !$isReply && $this->objCurrentPost->getDepth() > 2) ||
2390 ($isDraft && $this->objCurrentPost->getDepth() >= 2)
2394 $oPostGUI->removePlugin(
'advlink');
2395 $oPostGUI->setRTERootBlockElement(
'');
2396 $oPostGUI->usePurifier(
true);
2397 $oPostGUI->disableButtons([
2414 if (in_array($this->requestAction, [
'showreply',
'ready_showreply',
'showdraft',
'editdraft'])) {
2415 $oPostGUI->setRTESupport(
2416 $this->
user->getId(),
2419 'tpl.tinymce_frm_post.js',
2424 $oPostGUI->setRTESupport(
2425 $this->objCurrentPost->getId(),
2428 'tpl.tinymce_frm_post.js',
2436 $this->replyEditForm->addItem($oPostGUI);
2439 if (!$this->
user->isAnonymous() &&
2440 !$this->objProperties->isAnonymized() &&
2441 $this->
rbac->system()->checkAccess(
'internal_mail', $umail->getMailObjectReferenceId()) &&
2442 !$frm->isThreadNotificationEnabled($this->user->getId(), $this->objCurrentPost->getThreadId())) {
2444 $oNotificationGUI->setInfo($this->
lng->txt(
'forum_notify_me'));
2445 $this->replyEditForm->addItem($oNotificationGUI);
2448 if ($this->objProperties->isFileUploadAllowed()) {
2451 $this->replyEditForm->addItem($oFileUploadGUI);
2454 $attachments_of_node = $oFDForum->getFilesOfPost();
2455 if (count($attachments_of_node) && in_array($this->requestAction, [
'showedit',
'ready_showedit'])) {
2457 foreach ($oFDForum->getFilesOfPost() as $file) {
2460 $this->replyEditForm->addItem($oExistingAttachmentsGUI);
2464 if (in_array($this->requestAction, [
'showdraft',
'editdraft'])) {
2466 $draftInfoGUI->setValue(sprintf(
2467 $this->
lng->txt(
'autosave_draft_info'),
2470 $this->replyEditForm->addItem($draftInfoGUI);
2471 } elseif (!in_array($this->requestAction, [
'showedit',
'ready_showedit'])) {
2473 $draftInfoGUI->setValue(sprintf(
2474 $this->
lng->txt(
'autosave_post_draft_info'),
2477 $this->replyEditForm->addItem($draftInfoGUI);
2481 $selected_draft_id = $draft_id;
2483 $this->
user->getId(),
2484 $this->objCurrentPost->getId(),
2487 if ($draftObj->getDraftId() > 0) {
2491 if ($files_of_draft !== []) {
2493 $this->
lng->txt(
'forums_delete_file'),
2496 foreach ($files_of_draft as $file) {
2499 $this->replyEditForm->addItem($oExistingAttachmentsGUI);
2504 $this->replyEditForm->addCommandButton(
'saveTopLevelPost', $this->
lng->txt(
'create'));
2506 $this->replyEditForm->addCommandButton(
'publishDraft', $this->
lng->txt(
'publish'));
2508 $this->replyEditForm->addCommandButton(
'savePost', $this->
lng->txt(
'save'));
2513 $hidden_draft_id->setValue((
string) $auto_save_draft_id);
2514 $this->replyEditForm->addItem($hidden_draft_id);
2516 if (in_array($this->requestAction, [
'showreply',
'ready_showreply',
'editdraft'])) {
2517 $show_rte = $this->
http->wrapper()->post()->retrieve(
2519 $this->
refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->
refinery->always(0)])
2526 if ($quotingAllowed) {
2527 $this->replyEditForm->addCommandButton(
'quotePost', $this->
lng->txt(
'forum_add_quote'));
2530 if (!$this->
user->isAnonymous() &&
2531 in_array($this->requestAction, [
'editdraft',
'showreply',
'ready_showreply']) &&
2537 if ($this->requestAction ===
'editdraft') {
2538 $this->replyEditForm->addCommandButton(
'updateDraft', $this->
lng->txt(
'save_message'));
2540 $this->replyEditForm->addCommandButton(
'saveTopLevelDraft', $this->
lng->txt(
'save_message'));
2542 $this->replyEditForm->addCommandButton(
'saveAsDraft', $this->
lng->txt(
'save_message'));
2545 $cancel_cmd =
'cancelDraft';
2548 $this->replyEditForm->addCommandButton($cancel_cmd, $this->
lng->txt(
'cancel'));
2553 if ($this->replyEditForm ===
null) {
2565 if ($draft_id > 0 && !$this->
user->isAnonymous()
2568 $this->
user->getId(),
2569 $this->objCurrentPost->getId(),
2574 if ($draft_obj instanceof
ilForumPostDraft && $draft_obj->getDraftId() > 0) {
2575 $this->
ctrl->setParameter($this,
'action',
'editdraft');
2576 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
2577 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
2578 $this->
ctrl->setParameter($this,
'draft_id', $draft_obj->getDraftId());
2579 $this->
ctrl->setParameter($this,
'page', 0);
2580 $this->
ctrl->setParameter(
2585 $this->
ctrl->redirect($this,
'editDraft');
2599 if ($draft_id > 0) {
2607 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
2608 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2611 if (!$this->
access->checkAccess(
'add_reply',
'', $this->object->getRefId())) {
2612 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2615 if ($this->objCurrentTopic->getId() === 0) {
2616 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_deleted'),
true);
2617 $this->
ctrl->redirect($this);
2620 if ($this->objCurrentTopic->isClosed()) {
2621 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_closed'),
true);
2622 $this->
ctrl->redirect($this);
2625 if ($this->objCurrentPost->getId() === 0) {
2626 $this->requestAction =
'';
2627 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_parent_deleted'));
2635 if ($use_replyform) {
2637 if (!$oReplyEditForm->checkInput()) {
2638 $oReplyEditForm->setValuesByPost();
2642 $post_subject = $oReplyEditForm->getInput(
'subject');
2643 $post_message = $oReplyEditForm->getInput(
'message');
2646 $post_subject = $draft->getPostSubject();
2647 $post_message = $draft->getPostMessage();
2652 $frm = $oForumObjects[
'frm'];
2653 $frm->setMDB2WhereCondition(
' top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
2657 $send_activation_mail =
false;
2659 if ($this->objProperties->isPostActivationEnabled()) {
2660 if (!$this->is_moderator) {
2662 $send_activation_mail =
true;
2663 } elseif ($this->objCurrentPost->isAnyParentDeactivated()) {
2668 $newPost = $frm->generatePost(
2669 $draft->getForumId(),
2670 $draft->getThreadId(),
2671 $this->
user->getId(),
2672 $draft->getPostDisplayUserId(),
2674 $draft->getPostId(),
2675 $draft->isNotificationEnabled(),
2677 $draft->getPostUserAlias(),
2680 $send_activation_mail
2683 $this->
object->markPostRead(
2684 $this->
user->getId(),
2685 $this->objCurrentTopic->getId(),
2686 $this->objCurrentPost->getId()
2691 foreach ($uploadedObjects as $mob) {
2698 if ($draft->getRCID() > 0) {
2699 $post_obj->setRCID($draft->getRCID());
2700 $post_obj->update();
2703 if ($this->objProperties->isFileUploadAllowed()) {
2704 $file = $_FILES[
'userfile'] ?? [];
2705 if (is_array($file) && !empty($file)) {
2711 $GLOBALS[
'ilAppEventHandler']->raise(
2712 'components/ILIAS/Forum',
2715 'draftObj' => $draft,
2716 'obj_id' => $this->
object->getId(),
2717 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed()
2720 $draft->deleteDraft();
2722 $GLOBALS[
'ilAppEventHandler']->raise(
2723 'components/ILIAS/Forum',
2726 'object' => $this->
object,
2727 'ref_id' => $this->
object->getRefId(),
2728 'post' => $post_obj,
2729 'notify_moderators' => $send_activation_mail
2734 if (!$this->is_moderator && !$status) {
2735 $message .= $this->
lng->txt(
'forums_post_needs_to_be_activated');
2737 $message .= $this->
lng->txt(
'forums_post_new_entry');
2741 if (is_array($frm_session_values)) {
2742 $frm_session_values[$this->objCurrentTopic->getId()][
'openTreeNodes'][] = $this->objCurrentPost->getId();
2746 $this->
ctrl->clearParameters($this);
2747 $this->tpl->setOnScreenMessage(
'success',
$message,
true);
2748 $this->
ctrl->setParameter($this,
'pos_pk', $newPost);
2749 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
2751 $this->
ctrl->redirect($this,
'viewThread');
2756 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
2757 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2760 if ($this->objCurrentTopic->getId() === 0) {
2761 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_deleted'),
true);
2762 $this->
ctrl->redirect($this);
2765 if ($this->objCurrentTopic->isClosed()) {
2766 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_closed'),
true);
2767 $this->
ctrl->redirect($this);
2773 if ($oReplyEditForm->checkInput()) {
2774 if ($this->objCurrentPost->getId() === 0) {
2775 $this->requestAction =
'';
2776 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_parent_deleted'),
true);
2782 $forumObj = $oForumObjects[
'forumObj'];
2783 $frm = $oForumObjects[
'frm'];
2784 $frm->setMDB2WhereCondition(
' top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
2785 $topicData = $frm->getOneTopic();
2787 $autosave_draft_id = $this->
http->wrapper()->post()->retrieve(
2789 $this->
refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->
refinery->always(0)])
2792 if ($this->requestAction ===
'ready_showreply') {
2793 if (!$this->
access->checkAccess(
'add_reply',
'', $this->object->getRefId())) {
2794 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2798 $send_activation_mail =
false;
2800 if ($this->objProperties->isPostActivationEnabled()) {
2801 if (!$this->is_moderator) {
2803 $send_activation_mail =
true;
2804 } elseif ($this->objCurrentPost->isAnyParentDeactivated()) {
2810 if ((
string) $oReplyEditForm->getInput(
'alias') ===
'') {
2811 $user_alias = $this->
lng->txt(
'forums_anonymous');
2813 $user_alias = $oReplyEditForm->getInput(
'alias');
2815 $display_user_id = 0;
2817 $user_alias = $this->
user->getLogin();
2818 $display_user_id = $this->
user->getId();
2821 $newPost = $frm->generatePost(
2822 $topicData->getTopPk(),
2823 $this->objCurrentTopic->getId(),
2824 $this->
user->getId(),
2827 $this->objCurrentPost->getId(),
2828 $oReplyEditForm->getInput(
'notify') && !$this->
user->isAnonymous(),
2833 $send_activation_mail
2836 if ($autosave_draft_id > 0) {
2838 $this->
user->getId(),
2839 $this->objCurrentPost->getId(),
2843 $draft->deleteDraft();
2848 $this->
object->markPostRead(
2849 $this->
user->getId(),
2850 $this->objCurrentTopic->getId(),
2851 $this->objCurrentPost->getId()
2856 $oReplyEditForm->getInput(
'message'),
2858 $this->
user->getId(),
2863 if ($this->objProperties->isFileUploadAllowed()) {
2865 $file = $_FILES[
'userfile'];
2866 if (is_array($file) && !empty($file)) {
2871 $GLOBALS[
'ilAppEventHandler']->raise(
2872 'components/ILIAS/Forum',
2875 'object' => $this->
object,
2876 'ref_id' => $this->
object->getRefId(),
2878 'notify_moderators' => $send_activation_mail
2883 if (!$this->is_moderator && !$status) {
2884 $message .= $this->
lng->txt(
'forums_post_needs_to_be_activated');
2886 $message .= $this->
lng->txt(
'forums_post_new_entry');
2889 $this->tpl->setOnScreenMessage(
'success',
$message,
true);
2890 $this->
ctrl->clearParameters($this);
2891 $this->
ctrl->setParameter($this,
'post_created_below', $this->objCurrentPost->getId());
2892 $this->
ctrl->setParameter($this,
'pos_pk', $newPost);
2893 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
2895 if ((!$this->is_moderator &&
2896 !$this->objCurrentPost->isOwner($this->user->getId())) || $this->objCurrentPost->isCensored() ||
2897 $this->
user->isAnonymous()) {
2898 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2905 foreach ($oldMediaObjects as $oldMob) {
2907 foreach ($curMediaObjects as $curMob) {
2908 if ($oldMob === $curMob) {
2921 $old_status_was_active = $this->objCurrentPost->isActivated();
2925 $send_activation_mail =
false;
2927 if ($this->objProperties->isPostActivationEnabled()) {
2928 if (!$this->is_moderator) {
2930 $send_activation_mail =
true;
2931 } elseif ($this->objCurrentPost->isAnyParentDeactivated()) {
2935 $this->objCurrentPost->setStatus($status);
2937 $this->objCurrentPost->setSubject($this->
handleFormInput($oReplyEditForm->getInput(
'subject'),
false));
2939 $oReplyEditForm->getInput(
'message')
2941 $this->objCurrentPost->setNotification($oReplyEditForm->getInput(
'notify') && !$this->
user->isAnonymous());
2942 $this->objCurrentPost->setChangeDate(date(
'Y-m-d H:i:s'));
2943 $this->objCurrentPost->setUpdateUserId($this->
user->getId());
2945 if ($this->objCurrentPost->update()) {
2946 $this->objCurrentPost->reload();
2953 $this->objCurrentPost->getId(),
2958 $news_item->setTitle($this->objCurrentPost->getSubject());
2959 $news_item->setContent(
2961 $this->objCurrentPost->getMessage()
2965 if ($this->objCurrentPost->getMessage() !== strip_tags($this->objCurrentPost->getMessage())) {
2966 $news_item->setContentHtml(
true);
2968 $news_item->setContentHtml(
false);
2970 $news_item->update();
2973 $oFDForum = $oForumObjects[
'file_obj'];
2975 $file2delete = $oReplyEditForm->getInput(
'del_file');
2976 if (is_array($file2delete) && count($file2delete)) {
2977 $oFDForum->unlinkFilesByMD5Filenames($file2delete);
2980 if ($this->objProperties->isFileUploadAllowed()) {
2981 $file = $_FILES[
'userfile'];
2982 if (is_array($file) && !empty($file)) {
2983 $oFDForum->storeUploadedFiles();
2987 $GLOBALS[
'ilAppEventHandler']->raise(
2988 'components/ILIAS/Forum',
2991 'ref_id' => $this->
object->getRefId(),
2993 'notify_moderators' => $send_activation_mail,
2994 'old_status_was_active' => $old_status_was_active
2998 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'forums_post_modified'),
true);
3001 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
3002 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
3003 $this->
ctrl->setParameter($this,
'viewmode', $this->selectedSorting);
3005 $this->
ctrl->redirect($this,
'viewThread');
3007 $this->requestAction = substr($this->requestAction, 6);
3014 if ($a_flag ===
null) {
3024 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3025 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3028 if ($this->objCurrentTopic->isClosed()) {
3029 $this->requestAction =
'';
3036 $oReplyEditForm->getItemByPostVar(
'subject')->setRequired(
false);
3037 $oReplyEditForm->getItemByPostVar(
'message')->setRequired(
false);
3039 $oReplyEditForm->checkInput();
3041 $oReplyEditForm->getItemByPostVar(
'subject')->setRequired(
true);
3042 $oReplyEditForm->getItemByPostVar(
'message')->setRequired(
true);
3044 $this->requestAction =
'showreply';
3054 if ($this->forumObjects ===
null) {
3056 $file_obj =
new ilFileDataForum($forumObj->getId(), $this->objCurrentPost->getId());
3057 $frm = $forumObj->Forum;
3058 $frm->setForumId($forumObj->getId());
3059 $frm->setForumRefId($forumObj->getRefId());
3061 $this->forumObjects[
'forumObj'] = $forumObj;
3062 $this->forumObjects[
'frm'] = $frm;
3063 $this->forumObjects[
'file_obj'] = $file_obj;
3071 $this->selectedSorting = $this->objProperties->getDefaultView();
3074 $view_mode =
'viewmode_' . $this->
getObject()->getId();
3084 isset($this->httpRequest->getQueryParams()[
'viewmode']) &&
3087 $this->selectedSorting = (
int) $this->httpRequest->getQueryParams()[
'viewmode'];
3090 if (!in_array($this->selectedSorting, [
3095 $this->selectedSorting = $this->objProperties->getDefaultView();
3104 $this->selected_post_storage->set($this->objCurrentTopic->getId(), 0);
3105 $this->
ctrl->redirect($this,
'viewThread');
3110 $thr_pk = $this->objCurrentTopic->getId();
3113 $toolbar_items = [];
3116 $thread_control_session_values =
ilSession::get(
'thread_control');
3117 if (is_array($thread_control_session_values)) {
3118 if (!isset($thread_control_session_values[
'old'])) {
3119 $thread_control_session_values[
'old'] = $thr_pk;
3120 $thread_control_session_values[
'new'] = $thr_pk;
3121 ilSession::set(
'thread_control', $thread_control_session_values);
3122 } elseif (isset($thread_control_session_values[
'old']) && $thr_pk !== $thread_control_session_values[
'old']) {
3123 $thread_control_session_values[
'new'] = $thr_pk;
3124 ilSession::set(
'thread_control', $thread_control_session_values);
3128 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3129 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3133 $forumObj = $oForumObjects[
'forumObj'];
3134 $frm = $oForumObjects[
'frm'];
3135 $file_obj = $oForumObjects[
'file_obj'];
3137 $selected_draft_id = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
3138 if (isset($this->httpRequest->getQueryParams()[
'file'])) {
3139 $file_obj_for_delivery = $file_obj;
3146 if ($this->objCurrentTopic->getId() === 0) {
3147 $this->
ctrl->redirect($this,
'showThreads');
3151 if (isset($this->httpRequest->getQueryParams()[
'page'])) {
3152 $pageIndex = max((
int) $this->httpRequest->getQueryParams()[
'page'], $pageIndex);
3155 if ($this->selected_post_storage->get($this->objCurrentTopic->getId()) > 0) {
3157 $this->selected_post_storage->get($this->objCurrentTopic->getId()),
3158 $this->is_moderator,
3162 $firstNodeInThread = $this->objCurrentTopic->getPostRootNode();
3173 'tpl.forums_threads_view.html',
3176 'components/ILIAS/Forum' 3181 $order_field =
'frm_posts_tree.rgt';
3182 $this->objCurrentTopic->setOrderDirection(
'DESC');
3183 $threadContentTemplate->setVariable(
'LIST_TYPE', $this->viewModeOptions[$this->selectedSorting]);
3185 $order_field =
'frm_posts.pos_date';
3186 $this->objCurrentTopic->setOrderDirection(
3189 $threadContentTemplate->setVariable(
'LIST_TYPE', $this->sortationOptions[$this->selectedSorting]);
3191 $this->objCurrentTopic->setOrderField($order_field);
3194 $subtree_nodes = $this->objCurrentTopic->getPostTree($firstNodeInThread);
3195 $numberOfPostings = count($subtree_nodes);
3206 $append =
'_' . $this->objCurrentTopic->getId() .
3207 ($this->objCurrentPost->getId() !== 0 ?
'_' . $this->objCurrentPost->getId() :
'');
3208 $this->tpl->setLoginTargetPar(
'frm_' . $this->
object->getRefId() . $append);
3211 if (!in_array($this->requestAction, [
'showreply',
'showedit'])) {
3214 foreach ($mobs as $mob) {
3225 if (!$this->
getCreationMode() && $this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3227 $this->
object->getRefId(),
3228 ilLink::_getLink($this->
object->getRefId(),
'frm'),
3233 $this->prepareThreadScreen($forumObj);
3236 if (isset($this->httpRequest->getQueryParams()[
'anchor'])) {
3237 $threadContentTemplate->setVariable(
'JUMP2ANCHOR_ID', (
int) $this->httpRequest->getQueryParams()[
'anchor']);
3239 $frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
3242 $this->
object->getType(),
3243 $this->
object->getRefId(),
3244 $this->
object->getId(),
3245 $this->
user->getId()
3248 if ($firstNodeInThread) {
3249 $this->objCurrentTopic->updateVisits();
3251 $this->tpl->setTitle($this->
lng->txt(
'forums_thread') .
' "' . $this->objCurrentTopic->getSubject() .
'"');
3253 $this->
locator->addRepositoryItems();
3254 $this->
locator->addItem($this->
object->getTitle(), $this->
ctrl->getLinkTarget($this,
''),
'_top');
3255 $this->tpl->setLocator();
3257 if (!$this->
user->isAnonymous() &&
3258 $forumObj->getCountUnread($this->
user->getId(), $this->objCurrentTopic->getId(),
true)) {
3259 $this->
ctrl->setParameter($this,
'mark_read',
'1');
3260 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
3262 $mark_thr_read_button = $this->uiFactory->button()->standard(
3263 $this->
lng->txt(
'forums_mark_read'),
3264 $this->
ctrl->getLinkTarget($this,
'viewThread')
3267 $toolbar_items[] = $mark_thr_read_button;
3269 $this->
ctrl->clearParameters($this);
3272 $this->
ctrl->setParameterByClass(ilForumExportGUI::class,
'print_thread', $this->objCurrentTopic->getId());
3273 $this->
ctrl->setParameterByClass(
3274 ilForumExportGUI::class,
3276 $this->objCurrentTopic->getForumId()
3279 if ($numberOfPostings > 0 && $this->
settings->get(
'forum_enable_print',
'0')) {
3280 $print_thr_button = $this->uiFactory->button()->standard(
3281 $this->
lng->txt(
'forums_print_thread'),
3282 $this->
ctrl->getLinkTargetByClass(ilForumExportGUI::class,
'printThread')
3284 $toolbar_items[] = $print_thr_button;
3288 $this->
ctrl->clearParametersByClass(ilForumExportGUI::class);
3292 if (isset($this->httpRequest->getQueryParams()[
'mark_read'])) {
3293 $forumObj->markThreadRead($this->
user->getId(), $this->objCurrentTopic->getId());
3294 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_thread_marked'),
true);
3299 !$this->objCurrentTopic->isClosed() &&
3300 $this->
access->checkAccess(
'add_reply',
'', $this->
object->getRefId())) {
3301 $this->
ctrl->setParameter($this,
'action',
'showreply');
3302 $this->
ctrl->setParameter($this,
'pos_pk', $firstNodeInThread->getId());
3303 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
3304 $this->
ctrl->setParameter(
3307 (
int) ($this->httpRequest->getQueryParams()[
'page'] ?? 0)
3309 $this->
ctrl->setParameter(
3314 if ($numberOfPostings > 0) {
3315 $reply_button = $this->uiFactory->button()->standard(
3316 $this->
lng->txt(
'add_new_answer'),
3317 $this->
ctrl->getLinkTarget($this,
'createTopLevelPost',
'frm_page_bottom')
3320 $reply_button = $this->uiFactory->button()->primary(
3321 $this->
lng->txt(
'add_new_answer'),
3322 $this->
ctrl->getLinkTarget($this,
'createTopLevelPost',
'frm_page_bottom')
3325 $this->
ctrl->clearParameters($this);
3326 array_unshift($toolbar_items, $reply_button);
3330 if ($numberOfPostings === 0 && $firstNodeInThread->getId() === 0) {
3331 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_no_posts_available'));
3334 $pageSize = $frm->getPageHits();
3336 if ($numberOfPostings > $pageSize) {
3337 $this->
ctrl->setParameter($this,
'ref_id', $this->
object->getRefId());
3338 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
3339 $this->
ctrl->setParameter(
3344 $paginationUrl = $this->
ctrl->getLinkTarget($this,
'viewThread',
'');
3345 $this->
ctrl->clearParameters($this);
3347 $pagination = $this->uiFactory->viewControl()
3349 ->withTargetURL($paginationUrl,
'page')
3350 ->withTotalEntries($numberOfPostings)
3351 ->withPageSize($pageSize)
3352 ->withMaxPaginationButtons(10)
3353 ->withCurrentPage($pageIndex);
3355 $threadContentTemplate->setVariable(
'THREAD_MENU', $this->uiRenderer->render(
3358 $threadContentTemplate->setVariable(
'THREAD_MENU_BOTTOM', $this->uiRenderer->render(
3364 $draftsObjects = [];
3365 if ($doRenderDrafts) {
3367 $this->
user->getId(),
3368 $this->objCurrentTopic->getId(),
3373 $pagedPostings = array_slice($subtree_nodes, $pageIndex * $pageSize, $pageSize);
3377 if ($doRenderDrafts && $pageIndex === 0 &&
3379 foreach ($draftsObjects as $draft) {
3380 $referencePosting = array_values(array_filter(
3383 return $draft->getPostId() === $post->
getId();
3385 ))[0] ?? $firstNodeInThread;
3388 $threadContentTemplate,
3389 $this->requestAction,
3396 foreach ($pagedPostings as $node) {
3397 $this->
ctrl->clearParameters($this);
3400 ($this->is_moderator || $node->isActivated() || $node->isOwner($this->
user->getId()))) {
3401 if (!$this->objCurrentTopic->isClosed() && in_array($this->requestAction, [
3405 $this->
renderPostingForm($threadContentTemplate, $frm, $node, $this->requestAction);
3406 } elseif ($this->requestAction ===
'censor' &&
3408 $threadContentTemplate->setVariable(
'FORM', $this->getCensorshipFormHTML());
3412 $this->
renderPostContent($threadContentTemplate, $node, $this->requestAction, $pageIndex, $postIndex);
3415 $threadContentTemplate,
3416 $this->requestAction,
3418 $draftsObjects[$node->getId()] ?? []
3427 $doRenderDrafts && $pageIndex === max(0, (
int) (ceil($numberOfPostings / $pageSize) - 1))
3429 foreach ($draftsObjects as $draft) {
3430 $referencePosting = array_values(array_filter(
3433 return $draft->getPostId() === $post->
getId();
3435 ))[0] ?? $firstNodeInThread;
3438 $threadContentTemplate,
3439 $this->requestAction,
3447 $firstNodeInThread instanceof
ilForumPost && $doRenderDrafts &&
3451 $threadContentTemplate,
3452 $this->requestAction,
3454 $draftsObjects[$firstNodeInThread->getId()] ?? []
3459 !$this->objCurrentTopic->isClosed() &&
3460 in_array($this->
ctrl->getCmd(), [
'createTopLevelPost',
'saveTopLevelPost',
'saveTopLevelDraft'],
true) &&
3461 $this->
access->checkAccess(
'add_reply',
'', $this->object->getRefId())) {
3463 $this->objCurrentPost->setId($firstNodeInThread->getId());
3466 if (in_array($this->
ctrl->getCmd(), [
'saveTopLevelPost',
'saveTopLevelDraft'])) {
3467 $form->setValuesByPost();
3469 $threadContentTemplate->setVariable(
'BOTTOM_FORM', $form->getHTML());
3472 $threadContentTemplate->setCurrentBlock(
'posts_no');
3473 $threadContentTemplate->setVariable(
3474 'TXT_MSG_NO_POSTS_AVAILABLE',
3475 $this->
lng->txt(
'forums_posts_not_available')
3477 $threadContentTemplate->parseCurrentBlock();
3480 $to_top_button = $this->uiFactory->button()
3481 ->standard($this->
lng->txt(
'top_of_page'),
'#frm_page_top');
3482 $bottom_toolbar->addComponent($to_top_button);
3483 if ($numberOfPostings > 0) {
3484 $threadContentTemplate->setVariable(
'TOOLBAR_BOTTOM', $bottom_toolbar->getHTML());
3487 if ($toolbar_items !== []) {
3488 foreach ($toolbar_items as $component_index => $item) {
3489 $this->toolbar->addComponent($item);
3490 $bottom_toolbar->addComponent($item);
3491 if ($component_index === 0 && $numberOfPostings > 0) {
3500 $this->tpl->setPermanentLink(
3501 $this->
object->getType(),
3502 $this->
object->getRefId(),
3503 (string) $this->objCurrentTopic->getId()
3506 $this->tpl->addOnLoadCode(
3508 document.querySelectorAll(
'.ilFrmPostContent img').forEach((img) => {
3509 const maxWidth = img.getAttribute(
'width');
3510 const maxHeight = img.getAttribute(
'height');
3513 img.style.maxWidth = maxWidth +
'px';
3514 img.removeAttribute(
'width');
3518 img.style.maxHeight = maxHeight +
'px';
3519 img.removeAttribute(
'height');
3529 $this->tpl->setContent(($info ??
'') . $threadContentTemplate->get() . $this->
getModalActions());
3534 if ($currentViewMode === 3) {
3535 $currentViewMode = 2;
3537 $translationKeys = [];
3538 foreach ($this->viewModeOptions as $sortingConstantKey => $languageKey) {
3539 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
3540 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
3541 $this->
ctrl->setParameter($this,
'viewmode', $sortingConstantKey);
3543 $translationKeys[$this->
lng->txt($languageKey)] = $this->
ctrl->getLinkTarget(
3549 $this->
ctrl->clearParameters($this);
3556 $sortViewControl = $this->uiFactory
3558 ->mode($translationKeys, $this->
lng->txt($this->viewModeOptions[$currentViewMode]))
3559 ->withActive($this->
lng->txt($this->viewModeOptions[$currentViewMode]));
3560 $this->
toolbar->addComponent($sortViewControl);
3565 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
3566 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
3567 $target = $this->
ctrl->getLinkTarget(
3573 $translatedSortationOptions =
array_map(
function ($value):
string {
3574 return $this->
lng->txt($value);
3577 $sortingDirectionViewControl = $this->uiFactory
3579 ->sortation($translatedSortationOptions, (
string) $currentSorting)
3580 ->withTargetURL($target,
'viewmode');
3581 $this->
toolbar->addComponent($sortingDirectionViewControl);
3586 return (
new \
ILIAS\
components\Forum\Subject\PostingReplySubjectBuilder(
3587 $this->
lng->txt(
'post_reply'),
3588 $this->
lng->txt(
'post_reply_count')
3589 ))->build($this->objCurrentPost->getSubject());
3596 $this->
refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->
refinery->always(0)])
3598 $backurl = $this->
http->wrapper()->query()->retrieve(
3600 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
3604 $add = $this->getUserProfileAdditional($this->
object->getRefId(),
$user_id);
3605 $profile_gui->setAdditional($add);
3607 $this->tpl->setContent($this->
ctrl->getHTML($profile_gui));
3610 protected function getUserProfileAdditional(
int $a_forum_ref_id,
int $a_user_id): array
3612 if (!$this->
access->checkAccess(
'read',
'', $a_forum_ref_id)) {
3613 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3618 if ($ref_obj->getType() ===
'frm') {
3620 $frm = $forumObj->Forum;
3621 $frm->setForumId($forumObj->getId());
3622 $frm->setForumRefId($forumObj->getRefId());
3627 if ($this->
access->checkAccess(
'moderate_frm',
'', $a_forum_ref_id)) {
3628 $numPosts = $frm->countUserArticles($a_user_id);
3630 $numPosts = $frm->countActiveUserArticles($a_user_id);
3633 return [$this->
lng->txt(
'forums_posts') => $numPosts];
3638 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3639 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3645 $cmd = $this->
ctrl->getCmd();
3648 if ($thread_ids !== []) {
3649 if ($cmd ===
'move') {
3650 if ($this->is_moderator) {
3654 } elseif ($cmd ===
'enable_notifications' && (
int) $this->
settings->get(
'forum_notification',
'0') !== 0) {
3655 foreach ($thread_ids as $thread_id) {
3658 $tmp_obj->enableNotification($this->
user->getId());
3661 $this->
ctrl->redirect($this,
'showThreads');
3662 } elseif ($cmd ===
'disable_notifications' && (
int) $this->
settings->get(
'forum_notification',
'0') !== 0) {
3663 foreach ($thread_ids as $thread_id) {
3666 $tmp_obj->disableNotification($this->
user->getId());
3669 $this->
ctrl->redirect($this,
'showThreads');
3670 } elseif ($cmd ===
'close') {
3671 if ($this->is_moderator) {
3672 foreach ($thread_ids as $thread_id) {
3678 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'selected_threads_closed'),
true);
3679 $this->
ctrl->redirect($this,
'showThreads');
3680 } elseif ($cmd ===
'reopen') {
3681 if ($this->is_moderator) {
3682 foreach ($thread_ids as $thread_id) {
3689 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'selected_threads_reopened'),
true);
3690 $this->
ctrl->redirect($this,
'showThreads');
3691 } elseif ($cmd ===
'makesticky') {
3692 if ($this->is_moderator) {
3693 $message = $this->
lng->txt(
'sel_threads_make_sticky');
3695 foreach ($thread_ids as $thread_id) {
3698 $makeSticky = $tmp_obj->makeSticky();
3700 $message = $this->
lng->txt(
'sel_threads_already_sticky');
3705 $this->tpl->setOnScreenMessage(
'info',
$message,
true);
3707 $this->
ctrl->redirect($this,
'showThreads');
3708 } elseif ($cmd ===
'unmakesticky' || $cmd ===
'make_topics_non_sticky') {
3709 if ($this->is_moderator) {
3710 $message = $this->
lng->txt(
'sel_threads_make_unsticky');
3711 foreach ($thread_ids as $thread_id) {
3714 $unmakeSticky = $tmp_obj->unmakeSticky();
3715 if (!$unmakeSticky) {
3716 $message = $this->
lng->txt(
'sel_threads_already_unsticky');
3722 $this->tpl->setOnScreenMessage(
'info',
$message,
true);
3724 $this->
ctrl->redirect($this,
'showThreads');
3725 } elseif ($cmd ===
'editThread') {
3726 if ($this->is_moderator) {
3727 $count = count($thread_ids);
3729 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_max_one_thread'),
true);
3730 $this->
ctrl->redirect($this,
'showThreads');
3737 $this->
ctrl->redirect($this,
'showThreads');
3738 } elseif ($cmd ===
'confirmDeleteThreads') {
3739 $this->confirmDeleteThreadsObject();
3740 } elseif ($cmd ===
'mergeThreads') {
3743 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'topics_please_select_one_action'),
true);
3744 $this->
ctrl->redirect($this,
'showThreads');
3747 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'),
true);
3748 $this->
ctrl->redirect($this,
'showThreads');
3754 if (!$this->is_moderator) {
3755 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3758 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3759 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3763 if ($this->
http->wrapper()->post()->has(
'frm_ref_id')) {
3764 $frm_ref_id = $this->
http->wrapper()->post()->retrieve(
3769 $this->error->raiseError(
'Please select a forum', $this->error->MESSAGE);
3773 if (!is_array($threads2move) || $threads2move === []) {
3774 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'),
true);
3775 $this->
ctrl->redirect($this,
'showThreads');
3778 if (!$this->
access->checkAccess(
'read',
'', (
int) $frm_ref_id)) {
3779 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3783 array_walk($threads2move,
function (
int $threadId) use (&$threads):
void {
3787 $threads[] = $threadId;
3790 if (isset($frm_ref_id) && (
int) $frm_ref_id) {
3791 $errorMessages = $this->
object->Forum->moveThreads(
3794 $this->ilObjDataCache->lookupObjId((
int) $frm_ref_id)
3797 if ([] !== $errorMessages) {
3798 $this->tpl->setOnScreenMessage(
'failure', implode(
'<br><br>', $errorMessages),
true);
3799 $this->
ctrl->redirect($this,
'showThreads');
3803 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'threads_moved_successfully'),
true);
3804 $this->
ctrl->redirect($this,
'showThreads');
3806 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'no_forum_selected'));
3814 $this->
ctrl->redirect($this,
'showThreads');
3819 if (!$this->is_moderator) {
3820 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3823 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3824 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3827 $frm_ref_id = $this->
http->wrapper()->post()->retrieve(
3833 if (!is_array($threads2move) || $threads2move === []) {
3834 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'),
true);
3835 $this->
ctrl->redirect($this,
'showThreads');
3840 array_walk($threads2move,
function (
int $threadId) use (&$threads, $isModerator):
void {
3844 $threads[] = $thread;
3848 $exp->setPathOpen($this->
object->getRefId());
3849 $exp->setNodeSelected(isset($frm_ref_id) && (
int) $frm_ref_id ? (
int) $frm_ref_id : 0);
3850 $exp->setCurrentFrmRefId($this->
object->getRefId());
3851 $exp->setHighlightedNode((
string) $this->
object->getRefId());
3852 if (!$exp->handleCommand()) {
3854 'tpl.forums_threads_move.html',
3857 'components/ILIAS/Forum' 3861 $this->
toolbar->addButton($this->
lng->txt(
'back'), $this->
ctrl->getLinkTarget($this));
3868 foreach ($threads as $thread) {
3869 $result[$counter][
'num'] = $counter + 1;
3870 $result[$counter][
'thr_subject'] = $thread->getSubject();
3874 $tblThr->setId(
'frmthrmv' . $this->
object->getRefId());
3875 $tblThr->setTitle(
'');
3876 $tblThr->addColumn($this->
lng->txt(
'subject'),
'top_name',
'100%');
3877 $tblThr->disable(
'header');
3878 $tblThr->disable(
'footer');
3879 $tblThr->disable(
'linkbar');
3880 $tblThr->disable(
'sort');
3881 $tblThr->disable(
'linkbar');
3882 $tblThr->setLimit(PHP_INT_MAX);
3883 $tblThr->setRowTemplate(
'tpl.forums_threads_move_thr_row.html',
'components/ILIAS/Forum');
3884 $tblThr->setDefaultOrderField(
'is_sticky');
3886 #$tblThr->setData($result); 3887 $moveThreadTemplate->setVariable(
'THREAD_TITLE', sprintf($this->
lng->txt(
'move_chosen_topics'), $thread->getSubject()));
3888 $moveThreadTemplate->setVariable(
'THREADS_TABLE', $tblThr->getHTML());
3889 $moveThreadTemplate->setVariable(
'FRM_SELECTION_TREE', $exp->getHTML());
3890 $moveThreadTemplate->setVariable(
'CMD_SUBMIT',
'performMoveThreads');
3891 $moveThreadTemplate->setVariable(
'TXT_SUBMIT', $this->
lng->txt(
'move'));
3892 $moveThreadTemplate->setVariable(
'FORMACTION', $this->
ctrl->getFormAction($this,
'performMoveThreads'));
3894 $this->tpl->setContent($moveThreadTemplate->get());
3903 $this->objProperties->isAnonymized() &&
3904 (!$this->is_moderator || !$this->objProperties->getMarkModeratorPosts())
3910 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3911 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3914 $draftIds = array_filter((array) ($this->httpRequest->getParsedBody()[
'draft_ids'] ?? []));
3915 if ([] === $draftIds) {
3916 $draftIds = array_filter([(
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0)]);
3920 $checkedDraftIds = [];
3921 foreach ($draftIds as $draftId) {
3922 if (array_key_exists($draftId, $instances)) {
3923 $checkedDraftIds[] = $draftId;
3924 $draft = $instances[$draftId];
3928 $GLOBALS[
'ilAppEventHandler']->raise(
3929 'components/ILIAS/Forum',
3932 'draftObj' => $draft,
3933 'obj_id' => $this->
object->getId(),
3934 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed(),
3939 $draftFileData->delete([$draft->getDraftId()]);
3941 $draft->deleteDraft();
3945 if (count($checkedDraftIds) > 1) {
3946 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'delete_drafts_successfully'),
true);
3948 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'delete_draft_successfully'),
true);
3950 $this->
ctrl->redirect($this,
'showThreads');
3955 $draftId = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
3956 $allowNotification = !$this->objProperties->isAnonymized() && !$this->
user->isAnonymous();
3959 if (!$this->
rbac->system()->checkAccess(
'internal_mail', $mail->getMailObjectReferenceId())) {
3960 $allowNotification =
false;
3965 $this->objProperties,
3978 $default_form->generateDefaultForm();
3982 return $default_form;
3987 $draftId = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
3988 $allowNotification = !$this->objProperties->isAnonymized() && !$this->
user->isAnonymous();
3991 if (!$this->
rbac->system()->checkAccess(
'internal_mail', $mail->getMailObjectReferenceId())) {
3992 $allowNotification =
false;
3997 $this->objProperties,
4007 $minimal_form->generateMinimalForm();
4009 return $minimal_form;
4014 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4015 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4018 if (!$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId())) {
4019 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4022 $tpl =
new ilTemplate(
'tpl.create_thread_form.html',
true,
true,
'components/ILIAS/Forum');
4025 $accordion->setId(
'acc_' . $this->obj_id);
4028 $accordion->addItem($this->
lng->txt(
'new_thread_with_post'), $this->
buildThreadForm()->getHTML());
4034 $this->tpl->setContent(
$tpl->
get());
4042 if (!$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()) ||
4043 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4044 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4047 $frm = $this->
object->Forum;
4048 $frm->setForumId($this->
object->getId());
4049 $frm->setForumRefId($this->
object->getRefId());
4050 $frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
4051 $topicData = $frm->getOneTopic();
4056 if ($form->checkInput()) {
4057 $userIdForDisplayPurposes = $this->
user->getId();
4059 $userIdForDisplayPurposes = 0;
4065 $this->objCurrentPost->isAnyParentDeactivated()
4070 if ($createFromDraft) {
4072 $newThread->setForumId($topicData->getTopPk());
4075 $newThread->setSubject($this->
handleFormInput($form->getInput(
'subject'),
false));
4078 $newPost = $frm->generateThread(
4087 $newThread->setForumId($topicData->getTopPk());
4088 $newThread->setThrAuthorId($this->
user->getId());
4089 $newThread->setDisplayUserId($userIdForDisplayPurposes);
4090 $newThread->setSubject($this->
handleFormInput($form->getInput(
'subject'),
false));
4092 $form->getInput(
'alias'),
4093 $this->objProperties->isAnonymized()
4096 $newPost = $frm->generateThread(
4099 $form->getItemByPostVar(
'notify') && $form->getInput(
'notify') && !$this->
user->isAnonymous(),
4107 $post_obj->setRCID($draft->
getRCID());
4108 $post_obj->update();
4111 if ($this->objProperties->isFileUploadAllowed()) {
4112 $file = $_FILES[
'userfile'];
4113 if (is_array($file) && !empty($file)) {
4119 $frm->setDbTable(
'frm_data');
4120 $frm->setMDB2WhereCondition(
'top_pk = %s ', [
'integer'], [$topicData->getTopPk()]);
4121 $frm->updateVisits($topicData->getTopPk());
4123 if ($createFromDraft) {
4128 foreach ($mediaObjects as $mob) {
4137 $draftHistory->deleteHistoryByDraftIds([$draft->
getDraftId()]);
4141 $GLOBALS[
'ilAppEventHandler']->raise(
4142 'components/ILIAS/Forum',
4145 'object' => $this->
object,
4146 'ref_id' => $this->
object->getRefId(),
4147 'post' => $post_obj,
4148 'notify_moderators' => !$status
4152 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'forums_thread_new_entry'),
true);
4153 $this->
ctrl->redirect($this);
4156 $form->setValuesByPost();
4157 if (!$this->objProperties->isAnonymized()) {
4158 $form->getItemByPostVar(
'alias')->setValue($this->
user->getLogin());
4162 $accordion->setId(
'acc_' . $this->obj_id);
4164 $accordion->addItem($this->
lng->txt(
'new_thread_with_post'), $form->getHTML());
4165 $accordion->addItem($this->
lng->txt(
'empty_thread'), $minimal_form->getHTML());
4167 $this->tpl->setContent($accordion->getHTML());
4175 if (!$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()) ||
4176 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4177 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4180 $frm = $this->
object->Forum;
4181 $frm->setForumId($this->
object->getId());
4182 $frm->setForumRefId($this->
object->getRefId());
4183 $frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
4184 $topicData = $frm->getOneTopic();
4189 if ($minimal_form->checkInput()) {
4190 $userIdForDisplayPurposes = $this->
user->getId();
4192 $userIdForDisplayPurposes = 0;
4198 $this->objCurrentPost->isAnyParentDeactivated()
4204 $newThread->setForumId($topicData->getTopPk());
4205 $newThread->setThrAuthorId($this->
user->getId());
4206 $newThread->setDisplayUserId($userIdForDisplayPurposes);
4207 $newThread->setSubject($this->
handleFormInput($minimal_form->getInput(
'subject'),
false));
4209 $minimal_form->getInput(
'alias'),
4210 $this->objProperties->isAnonymized()
4213 $frm->generateThread(
4222 $frm->setDbTable(
'frm_data');
4223 $frm->setMDB2WhereCondition(
'top_pk = %s ', [
'integer'], [$topicData->getTopPk()]);
4224 $frm->updateVisits($topicData->getTopPk());
4226 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'forums_thread_new_entry'),
true);
4227 $this->
ctrl->redirect($this);
4230 $form->setValuesByPost();
4232 if (!$this->objProperties->isAnonymized()) {
4233 $form->getItemByPostVar(
'alias')->setValue($this->
user->getLogin());
4237 $accordion->setId(
'acc_' . $this->obj_id);
4239 $accordion->addItem($this->
lng->txt(
'new_thread_with_post'), $form->getHTML());
4240 $accordion->addItem($this->
lng->txt(
'empty_thread'), $minimal_form->getHTML());
4242 $this->tpl->setContent($accordion->getHTML());
4248 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4275 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId()) || $this->
user->isAnonymous()) {
4276 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4279 $frm = $this->
object->Forum;
4280 $frm->setForumId($this->
object->getId());
4281 $frm->enableForumNotification($this->
user->getId());
4283 if ($this->objCurrentTopic->getId() > 0) {
4284 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4285 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_forum_notification_enabled'),
true);
4286 $this->
ctrl->redirect($this,
'viewThread');
4289 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_forum_notification_enabled'));
4295 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId()) || $this->
user->isAnonymous()) {
4296 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4299 $frm = $this->
object->Forum;
4300 $frm->setForumId($this->
object->getId());
4301 $frm->disableForumNotification($this->
user->getId());
4303 if ($this->objCurrentTopic->getId() > 0) {
4304 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4305 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_forum_notification_disabled'),
true);
4306 $this->
ctrl->redirect($this,
'viewThread');
4309 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_forum_notification_disabled'));
4319 if ($this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
4321 if ($news_set->get(
'enable_rss_for_internal')) {
4332 $this->
object->getTitle(),
4333 $this->
ctrl->getLinkTarget($this),
4335 $this->
object->getRefId()
4342 $a_text = str_replace([
'<',
'>'], [
'<',
'>'], $a_text);
4343 if ($a_stripslashes) {
4352 $a_text = str_replace([
'<',
'>'], [
'<',
'>'], $a_text);
4360 !$this->
access->checkAccess(
'visible',
'', $this->object->getRefId()) &&
4361 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())
4363 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
4366 if (strtolower($this->
ctrl->getCmd() ??
'') ===
'infoscreen') {
4367 $this->
ctrl->redirectByClass(ilInfoScreenGUI::class,
'showSummary');
4371 $info->enablePrivateNotes();
4372 $info->addMetaDataSections($this->
object->getId(), 0, $this->
object->getType());
4373 $this->
ctrl->forwardCommand($info);
4378 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4379 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4382 if ($this->objCurrentPost->getId() > 0) {
4385 $this->
object->markPostUnread($this->
user->getId(), $this->objCurrentPost->getId());
4392 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4393 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4396 if ($this->objCurrentTopic->getId() > 0 && $this->objCurrentPost->getId() > 0) {
4399 $this->
object->markPostRead(
4400 $this->
user->getId(),
4401 $this->objCurrentTopic->getId(),
4402 $this->objCurrentPost->getId()
4406 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4407 $this->
ctrl->redirect($this,
'viewThread');
4412 $lg = parent::initHeaderAction();
4418 if ($this->
user->isAnonymous() || !$this->
access->checkAccess(
'read',
'', $this->
object->getRefId())) {
4422 $frm = $this->
object->Forum;
4423 $frm->setForumId($this->
object->getId());
4424 $frm->setForumRefId($this->
object->getRefId());
4425 $frm->setMDB2Wherecondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
4427 $isForumNotificationEnabled = $frm->isForumNotificationEnabled($this->
user->getId());
4430 if ($this->objCurrentTopic->getId() > 0) {
4431 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4434 if (!$this->
user->isAnonymous()) {
4437 if ($isForumNotificationEnabled && $userMayDisableNotifications) {
4438 $lg->addCustomCommand(
4439 $this->
ctrl->getLinkTarget($this,
'disableForumNotification'),
4440 'forums_disable_forum_notification' 4442 } elseif (!$isForumNotificationEnabled) {
4443 $lg->addCustomCommand(
4444 $this->
ctrl->getLinkTarget($this,
'enableForumNotification'),
4445 'forums_enable_forum_notification' 4448 } elseif ($isForumNotificationEnabled) {
4449 $lg->addCustomCommand(
4450 $this->
ctrl->getLinkTarget($this,
'disableForumNotification'),
4451 'forums_disable_forum_notification' 4454 $lg->addCustomCommand(
4455 $this->
ctrl->getLinkTarget($this,
'enableForumNotification'),
4456 'forums_enable_forum_notification' 4461 if (!$this->
user->isAnonymous() && $isForumNotificationEnabled && $userMayDisableNotifications) {
4464 $interested_events = $frm_noti->readInterestedEvents();
4467 'hidden_value' =>
'',
4475 $notificationsModal = $this->uiFactory->modal()->roundtrip(
4476 $this->
lng->txt(
'notification_settings'),
4477 [$events_form_builder->build()]
4478 )->withActionButtons([
4481 ->primary($this->
lng->txt(
'save'),
'#')
4485 const button = document.getElementById('$id'); 4486 if (!button) return; 4488 const modalDialog = button.closest('.modal-dialog'); 4489 if (!modalDialog) return; 4491 const form = modalDialog.querySelector('.modal-body form'); 4494 form.classList.add('ilForumNotificationSettingsForm'); 4495 button.addEventListener('click', (event) => { 4496 event.preventDefault(); 4506 $showNotificationSettingsBtn = $this->uiFactory->button()
4507 ->shy($this->
lng->txt(
'notification_settings'),
'#')
4509 $notificationsModal->getShowSignal()
4512 $lg->addCustomCommandButton($showNotificationSettingsBtn, $notificationsModal);
4515 $isThreadNotificationEnabled =
false;
4516 if (!$this->
user->isAnonymous() && $this->objCurrentTopic->getId() > 0) {
4517 $isThreadNotificationEnabled = $this->objCurrentTopic->isNotificationEnabled($this->
user->getId());
4518 if ($isThreadNotificationEnabled) {
4519 $lg->addCustomCommand(
4520 $this->
ctrl->getLinkTarget($this,
'toggleThreadNotification'),
4521 'forums_disable_notification' 4524 $lg->addCustomCommand(
4525 $this->
ctrl->getLinkTarget($this,
'toggleThreadNotification'),
4526 'forums_enable_notification' 4530 $this->
ctrl->setParameter($this,
'thr_pk',
'');
4532 if (!$this->
user->isAnonymous()) {
4533 if ($isForumNotificationEnabled || $isThreadNotificationEnabled) {
4537 $this->
lng->txt(
'frm_notification_activated')
4543 $this->
lng->txt(
'frm_notification_deactivated')
4557 if ($this->objCurrentTopic->getId() > 0) {
4558 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4562 $this->
ctrl->getFormAction($this,
'saveUserNotificationSettings'),
4573 if ($this->httpRequest->getMethod() ===
'POST') {
4574 $form = $events_form_builder->build()->withRequest($this->httpRequest);
4575 $formData = $form->getData();
4579 foreach ($events_form_builder->getValidEvents() as $event) {
4580 $interested_events += isset($formData[$event]) && $formData[$event] ? $events_form_builder->getValueForEvent(
4587 $frm_noti->setInterestedEvents($interested_events);
4588 $frm_noti->updateInterestedEvents();
4591 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
4593 if ($this->objCurrentTopic->getId() > 0) {
4594 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4595 $this->
ctrl->redirect($this,
'viewThread');
4598 $this->
ctrl->redirect($this,
'showThreads');
4603 if ($this->objProperties->getNotificationType() ===
'default') {
4607 if (!$this->objProperties->isUserToggleNoti()) {
4615 return !$frm_noti->isUserToggleNotification();
4623 $grpRefId = $this->tree->checkForParentType($this->
object->getRefId(),
'grp');
4624 $crsRefId = $this->tree->checkForParentType($this->
object->getRefId(),
'crs');
4626 return ($grpRefId > 0 || $crsRefId > 0);
4631 if (!$this->is_moderator) {
4632 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4635 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4636 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4639 $threadIdToMerge = $this->
http->wrapper()->query()->retrieve(
4642 $this->refinery->kindlyTo()->int(),
4646 if ($threadIdToMerge <= 0) {
4647 $threadIds = array_values(
4648 array_filter(
array_map(intval(...), (array) ($this->httpRequest->getParsedBody()[
'thread_ids'] ?? [])))
4650 if (count($threadIds) === 1) {
4651 $threadIdToMerge = current($threadIds);
4653 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_one'));
4659 $frm = $this->
object->Forum;
4660 $frm->setForumId($this->
object->getId());
4661 $frm->setForumRefId($this->
object->getRefId());
4666 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'not_allowed_to_merge_into_another_forum'));
4671 $frm->setMDB2Wherecondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
4674 'tpl.forums_threads_liste.html',
4677 'components/ILIAS/Forum' 4680 $topicData = $frm->getOneTopic();
4681 if ($topicData->getTopPk() > 0) {
4682 $this->
ctrl->setParameter($this,
'merge_thread_id', $threadIdToMerge);
4686 (
int) $this->httpRequest->getQueryParams()[
'ref_id'],
4691 $tbl->setMapper($frm)->fetchData();
4693 $threadsTemplate->setVariable(
'THREADS_TABLE', $tbl->getHTML());
4694 $this->tpl->setContent($threadsTemplate->get());
4696 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
4703 if (!$this->is_moderator) {
4704 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4707 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4708 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4711 $sourceThreadId = (
int) ($this->httpRequest->getQueryParams()[
'merge_thread_id'] ?? 0);
4712 $targetThreadIds = array_values(
4713 array_filter(
array_map(intval(...), (array) ($this->httpRequest->getParsedBody()[
'thread_ids'] ?? [])))
4716 if ($sourceThreadId <= 0 || count($targetThreadIds) !== 1) {
4717 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
4722 $targetThreadId = current($targetThreadIds);
4723 if ($sourceThreadId === $targetThreadId) {
4724 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'error_same_thread_ids'));
4730 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'not_allowed_to_merge_into_another_forum'));
4731 $this->
ctrl->clearParameters($this);
4737 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'switch_threads_for_merge'));
4745 $c_gui->setFormAction($this->
ctrl->getFormAction($this,
'performMergeThreads'));
4746 $c_gui->setHeaderText($this->
lng->txt(
'frm_sure_merge_threads'));
4747 $c_gui->setCancel($this->
lng->txt(
'cancel'),
'showThreads');
4748 $c_gui->setConfirm($this->
lng->txt(
'confirm'),
'performMergeThreads');
4752 (
string) $sourceThreadId,
4757 (
string) $targetThreadId,
4760 $this->tpl->setContent($c_gui->getHTML());
4765 if (!$this->is_moderator) {
4766 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4769 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4770 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4773 $threadIds = array_values(
4774 array_filter(
array_map(intval(...), (array) ($this->httpRequest->getParsedBody()[
'thread_ids'] ?? [])))
4776 if (count($threadIds) !== 2) {
4777 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
4782 if ((
int) $threadIds[0] === (
int) $threadIds[1]) {
4783 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'error_same_thread_ids'));
4790 $frm->setForumId($this->
object->getId());
4791 $frm->setForumRefId($this->
object->getRefId());
4796 $frm->mergeThreads((
int) $threadIds[0], (
int) $threadIds[1]);
4797 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'merged_threads_successfully'));
4799 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($e->getMessage()));
4808 if (!$this->
ctrl->isAsynch()) {
4809 $content = implode(
'', [
4814 $this->tpl->setRightContent($content);
4819 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4820 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4826 if (!$fileData->deliverZipFile()) {
4827 $this->
ctrl->redirect($this);
4833 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4834 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4840 if (!$fileData->deliverZipFile()) {
4841 $this->
ctrl->redirect($this);
4848 !$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()) ||
4849 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4850 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4853 $frm = $this->
object->Forum;
4854 $frm->setForumId($this->
object->getId());
4855 $frm->setForumRefId($this->
object->getRefId());
4858 $draftId = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
4864 $do_history_check = (bool) ($this->httpRequest->getQueryParams()[
'hist_check'] ??
true);
4869 if ($form instanceof ilPropertyFormGUI) {
4870 $this->
ctrl->setParameter($this,
'draft_id', $draftId);
4873 $form->setValuesByArray([
4874 'alias' => $draft->getPostUserAlias(),
4875 'subject' => $draft->getPostSubject(),
4877 'notify' => $draft->isNotificationEnabled() && !$this->
user->isAnonymous(),
4880 'draft_id' => $draftId
4890 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4893 $historyId = (
int) ($this->httpRequest->getQueryParams()[
'history_id'] ?? 0);
4898 $draft = $history->rollbackAutosave();
4899 if ($draft->getThreadId() === 0 && $draft->getPostId() === 0) {
4900 $this->
ctrl->setParameter($this,
'draft_id', $history->getDraftId());
4901 $this->
ctrl->redirect($this,
'editThreadDraft');
4904 $this->
ctrl->clearParameters($this);
4905 $this->
ctrl->setParameter($this,
'pos_pk', $draft->getPostId());
4906 $this->
ctrl->setParameter($this,
'thr_pk', $draft->getThreadId());
4907 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
4908 $this->
ctrl->setParameter($this,
'action',
'editdraft');
4912 $this->
ctrl->redirect($this,
'viewThread');
4918 !$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()) ||
4919 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4920 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4923 $autosave_draft_id = (
int) ($this->httpRequest->getParsedBody()[
'draft_id'] ?? 0);
4924 if ($autosave_draft_id <= 0) {
4925 $autosave_draft_id = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
4928 $frm = $this->
object->Forum;
4929 $frm->setForumId($this->
object->getId());
4930 $frm->setForumRefId($this->
object->getRefId());
4931 $frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
4932 $topicData = $frm->getOneTopic();
4935 if ($form->checkInput()) {
4936 if ($autosave_draft_id === 0) {
4938 $draft->setForumId($topicData->getTopPk());
4939 $draft->setThreadId(0);
4940 $draft->setPostId(0);
4946 $draft->setPostSubject($this->
handleFormInput($form->getInput(
'subject'),
false));
4949 $form->getInput(
'alias'),
4950 $this->objProperties->isAnonymized()
4952 $draft->setNotificationStatus($form->getInput(
'notify') && !$this->
user->isAnonymous());
4953 $draft->setPostAuthorId($this->
user->getId());
4956 if ($autosave_draft_id === 0) {
4957 $draftId = $draft->saveDraft();
4959 $draft->updateDraft();
4960 $draftId = $draft->getDraftId();
4963 $GLOBALS[
'ilAppEventHandler']->raise(
4964 'components/ILIAS/Forum',
4967 'draftObj' => $draft,
4968 'obj_id' => $this->
object->getId(),
4969 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed(),
4977 $files2delete = $form->getInput(
'del_file');
4978 if (is_array($files2delete) && $files2delete !== []) {
4982 if ($this->objProperties->isFileUploadAllowed()) {
4983 $file = $_FILES[
'userfile'];
4984 if (is_array($file) && !empty($file)) {
4985 $draftFileData->storeUploadedFiles();
4989 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'save_draft_successfully'),
true);
4990 $this->
ctrl->clearParameters($this);
4991 $this->
ctrl->redirect($this,
'showThreads');
4994 $this->requestAction = substr($this->requestAction, 6);
4995 $form->setValuesByPost();
4996 $this->
ctrl->setParameter($this,
'draft_id', $autosave_draft_id);
4997 $this->tpl->setContent($form->getHTML());
5003 !$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()) ||
5004 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
5005 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5012 if ($form->checkInput()) {
5013 $draft->setPostSubject($this->
handleFormInput($form->getInput(
'subject'),
false));
5016 $form->getInput(
'alias'),
5017 $this->objProperties->isAnonymized()
5019 $draft->setNotificationStatus($form->getInput(
'notify') && !$this->
user->isAnonymous());
5020 $draft->setPostAuthorId($this->
user->getId());
5022 $draft->updateDraft();
5024 $GLOBALS[
'ilAppEventHandler']->raise(
5025 'components/ILIAS/Forum',
5028 'draftObj' => $draft,
5029 'obj_id' => $this->
object->getId(),
5030 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed(),
5035 $form->getInput(
'message'),
5037 $draft->getDraftId(),
5039 $draft->getDraftId()
5044 $files2delete = $form->getInput(
'del_file');
5045 if (is_array($files2delete) && $files2delete !== []) {
5049 if ($this->objProperties->isFileUploadAllowed()) {
5050 $file = $_FILES[
'userfile'];
5051 if (is_array($file) && !empty($file) && isset($file[
'full_path'][0]) && !empty($file[
'full_path'][0])) {
5052 $draftFileData->storeUploadedFiles();
5056 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'save_draft_successfully'),
true);
5057 $this->
ctrl->clearParameters($this);
5058 $this->
ctrl->redirect($this,
'showThreads');
5061 $form->setValuesByPost();
5062 $this->
ctrl->setParameter($this,
'hist_check', 0);
5063 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
5075 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
5076 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5079 $autosave_draft_id = $this->
http->wrapper()->post()->retrieve(
5082 $this->refinery->kindlyTo()->int(),
5087 if ($this->objCurrentTopic->getId() === 0) {
5088 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_deleted'),
true);
5089 $this->
ctrl->redirect($this);
5092 if ($this->objCurrentTopic->isClosed()) {
5093 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_closed'),
true);
5094 $this->
ctrl->redirect($this);
5098 if ($oReplyEditForm->checkInput()) {
5099 if ($this->objCurrentPost->getId() === 0) {
5100 $this->requestAction =
'';
5101 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_parent_deleted'),
true);
5107 $frm = $oForumObjects[
'frm'];
5108 $frm->setMDB2WhereCondition(
' top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
5109 $topicData = $frm->getOneTopic();
5111 if ($this->requestAction ===
'ready_showreply') {
5112 if (!$this->
access->checkAccess(
'add_reply',
'', $this->object->getRefId())) {
5113 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5116 if ($autosave_draft_id > 0) {
5122 $draftObj->setForumId($topicData->getTopPk());
5123 $draftObj->setThreadId($this->objCurrentTopic->getId());
5124 $draftObj->setPostId($this->objCurrentPost->getId());
5127 $draftObj->setPostSubject($this->
handleFormInput($oReplyEditForm->getInput(
'subject'),
false));
5130 $oReplyEditForm->getInput(
'alias'),
5131 $this->objProperties->isAnonymized()
5133 $draftObj->setNotificationStatus($oReplyEditForm->getInput(
'notify') && !$this->
user->isAnonymous());
5134 $draftObj->setPostNotificationStatus($oReplyEditForm->getInput(
'notify_post') && !$this->
user->isAnonymous());
5136 $draftObj->setPostAuthorId($this->
user->getId());
5139 if ($autosave_draft_id === 0) {
5140 $draft_id = $draftObj->saveDraft();
5142 $draftObj->updateDraft();
5143 $draft_id = $draftObj->getDraftId();
5148 $oReplyEditForm->getInput(
'message'),
5155 if ($this->objProperties->isFileUploadAllowed()) {
5156 $file = $_FILES[
'userfile'];
5157 if (is_array($file) && !empty($file)) {
5163 $GLOBALS[
'ilAppEventHandler']->raise(
5164 'components/ILIAS/Forum',
5167 'draftObj' => $draftObj,
5168 'obj_id' => $this->
object->getId(),
5169 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed()
5174 if (is_array($frm_session_values)) {
5175 $frm_session_values[$this->objCurrentPost->getThreadId()][
'openTreeNodes'][] = $this->objCurrentPost->getId();
5179 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'save_draft_successfully'),
true);
5180 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5181 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5182 $this->
ctrl->redirect($this,
'viewThread');
5185 $oReplyEditForm->setValuesByPost();
5186 $this->requestAction = substr($this->requestAction, 6);
5200 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
5201 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5204 if ($this->objCurrentTopic->getId() === 0) {
5205 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_deleted'),
true);
5206 $this->
ctrl->redirect($this);
5209 if ($this->objCurrentTopic->isClosed()) {
5210 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_closed'),
true);
5211 $this->
ctrl->redirect($this);
5214 if ($this->objCurrentPost->getId() === 0) {
5215 $this->requestAction =
'';
5216 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_parent_deleted'));
5222 if ($oReplyEditForm->checkInput()) {
5224 $forumObj = $oForumObjects[
'forumObj'];
5226 if (!$this->
user->isAnonymous() && in_array($this->requestAction, [
'showdraft',
'editdraft'])) {
5227 if (!$this->
access->checkAccess(
'add_reply',
'', $this->object->getRefId())) {
5228 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5232 $this->
user->getId(),
5233 $this->objCurrentPost->getId(),
5239 $draft->setPostSubject($this->
handleFormInput($oReplyEditForm->getInput(
'subject'),
false));
5241 $oReplyEditForm->getInput(
'message')
5244 $oReplyEditForm->getInput(
'alias'),
5245 $this->objProperties->isAnonymized()
5247 $draft->setNotificationStatus($oReplyEditForm->getInput(
'notify') && !$this->
user->isAnonymous());
5248 $draft->setUpdateUserId($this->
user->getId());
5249 $draft->setPostAuthorId($this->
user->getId());
5252 $draft->updateDraft();
5254 $GLOBALS[
'ilAppEventHandler']->raise(
5255 'components/ILIAS/Forum',
5258 'draftObj' => $draft,
5259 'obj_id' => $this->
object->getId(),
5260 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed()
5266 foreach ($uploadedObjects as $mob) {
5271 $oReplyEditForm->getInput(
'message'),
5273 $draft->getDraftId()
5278 $file2delete = $oReplyEditForm->getInput(
'del_file');
5279 if (is_array($file2delete) && count($file2delete)) {
5283 if ($this->objProperties->isFileUploadAllowed()) {
5284 $file = $_FILES[
'userfile'];
5285 if (is_array($file) && !empty($file)) {
5286 $oFDForumDrafts->storeUploadedFiles();
5291 if (is_array($frm_session_values)) {
5292 $frm_session_values[$this->objCurrentPost->getThreadId()][
'openTreeNodes'][] = $this->objCurrentPost->getId();
5295 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'save_draft_successfully'),
true);
5296 $this->
ctrl->clearParameters($this);
5297 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5298 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5299 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
5302 $this->
ctrl->clearParameters($this);
5303 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5304 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5306 $this->
ctrl->setParameter($this,
'action',
'editdraft');
5307 $oReplyEditForm->setValuesByPost();
5311 $this->
ctrl->clearParameters($this);
5312 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5313 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5314 $this->
ctrl->redirect($this,
'viewThread');
5321 foreach ($oldMediaObjects as $oldMob) {
5323 foreach ($curMediaObjects as $curMob) {
5324 if ($oldMob === $curMob) {
5345 $objFileDataForumDrafts->
delete([$draft->getDraftId()]);
5347 $GLOBALS[
'ilAppEventHandler']->raise(
5348 'components/ILIAS/Forum',
5351 'draftObj' => $draft,
5352 'obj_id' => $this->
object->getId(),
5353 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed()
5356 $draft->deleteDraft();
5358 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'delete_draft_successfully'),
true);
5359 $this->
ctrl->clearParameters($this);
5360 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5361 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5362 $this->
ctrl->redirect($this,
'viewThread');
5367 if ($this->requestAction !==
'ready_showreply' &&
5369 $this->
access->checkAccess(
'read',
'', $this->object->getRefId()) &&
5370 $this->
access->checkAccess(
'add_reply',
'', $this->object->getRefId())) {
5374 $this->objProperties,
5375 $this->objCurrentTopic,
5376 $this->objCurrentPost,
5377 function (
string $message):
string {
5385 $this->
http->saveResponse($this->
http->response()->withBody(
5387 $action->executeAndGetResponseObject(),
5393 $this->
http->sendResponse();
5394 $this->
http->close();
5399 if ($this->requestAction !==
'ready_showreply' &&
5401 $this->
access->checkAccess(
'read',
'', $this->object->getRefId()) &&
5402 $this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId())) {
5406 $this->objProperties,
5407 $this->objCurrentTopic,
5408 $this->objCurrentPost,
5409 function (
string $message):
string {
5417 $this->
http->saveResponse($this->
http->response()->withBody(
5419 $action->executeAndGetResponseObject(),
5425 $this->
http->sendResponse();
5426 $this->
http->close();
5441 if (($this->objCurrentPost->getId() !== $node->
getId() || (
5442 !in_array($action, [
'showreply',
'showedit',
'censor',
'delete'],
true) &&
5445 if ($this->is_moderator && !$this->objCurrentTopic->isClosed() && !$node->
isActivated()) {
5446 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5448 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5449 $this->
ctrl->setParameter(
5454 $primary_action = $this->
ctrl->getLinkTarget(
5456 'askForPostActivation',
5457 (
string) $node->
getId()
5459 $primary_action_language_id =
'activate_post';
5460 $this->
ctrl->clearParameters($this);
5464 $this->
access->checkAccess(
'add_reply',
'', $this->
object->getRefId())
5466 $this->
ctrl->setParameter($this,
'action',
'showreply');
5467 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5468 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5469 $this->
ctrl->setParameter(
5475 $primary_action = $this->
ctrl->getLinkTarget(
5478 'reply_' . $node->
getId()
5480 $primary_action_language_id =
'reply_to_postings';
5481 $this->
ctrl->clearParameters($this);
5484 !$this->objCurrentTopic->isClosed() &&
5486 !$this->
user->isAnonymous() &&
5487 ($node->
isOwner($this->
user->getId()) || $this->is_moderator)
5489 $this->
ctrl->setParameter($this,
'action',
'showedit');
5490 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5492 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5493 $this->
ctrl->setParameter(
5498 $actions[
'edit'] = $this->
ctrl->getLinkTarget($this,
'viewThread', (
string) $node->
getId());
5499 $this->
ctrl->clearParameters($this);
5501 if (!$this->
user->isAnonymous()) {
5502 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5504 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5505 $this->
ctrl->setParameter(
5510 $this->
ctrl->setParameter($this,
'viewmode', $this->selectedSorting);
5512 $read_undread_txt =
'frm_mark_as_read';
5513 $read_undread_cmd =
'markPostRead';
5515 $read_undread_txt =
'frm_mark_as_unread';
5516 $read_undread_cmd =
'markPostUnread';
5518 $actions[$read_undread_txt] = $this->
ctrl->getLinkTarget(
5521 (
string) $node->
getId()
5524 $this->
ctrl->clearParameters($this);
5527 $this->
ctrl->setParameterByClass(ilForumExportGUI::class,
'top_pk', $node->
getForumId());
5528 $this->
ctrl->setParameterByClass(ilForumExportGUI::class,
'thr_pk', $node->
getThreadId());
5531 $this->
ctrl->clearParameters($this);
5534 !$this->objCurrentTopic->isClosed() &&
5535 !$this->
user->isAnonymous() &&
5538 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5540 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5541 $this->
ctrl->setParameter(
5546 $actions[
'delete'] = $this->
ctrl->getFormAction($this,
'deletePosting');
5547 $this->
ctrl->clearParameters($this);
5549 if ($this->is_moderator && !$this->objCurrentTopic->isClosed()) {
5550 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5552 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5553 $this->
ctrl->setParameter(
5559 $this->
ctrl->setParameter($this,
'action',
'viewThread');
5560 $actions[
'frm_revoke_censorship'] = $this->
ctrl->getFormAction($this,
'revokeCensorship');
5562 $actions[
'frm_censorship'] = $this->
ctrl->getFormAction($this,
'addCensorship');
5564 $this->
ctrl->clearParameters($this);
5567 } elseif ($draft_id !== $draft->getDraftId() || !in_array($action, [
'deletedraft',
'editdraft'])) {
5569 $this->
ctrl->setParameter($this,
'action',
'publishdraft');
5570 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5571 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
5572 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5573 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
5574 $this->
ctrl->setParameter(
5579 $primary_action = $this->
ctrl->getLinkTarget($this,
'publishSelectedDraft', (
string) $node->
getId());
5580 $primary_action_language_id =
'publish';
5581 $this->
ctrl->clearParameters($this);
5583 $this->
ctrl->setParameter($this,
'action',
'editdraft');
5584 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5585 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
5586 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
5587 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5588 $this->
ctrl->setParameter(
5593 $actions[
'edit'] = $this->
ctrl->getLinkTarget($this,
'editDraft',
'draft_edit_' . $draft->getDraftId());
5594 $this->
ctrl->clearParameters($this);
5596 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5597 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
5598 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
5599 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5600 $this->
ctrl->setParameter(
5605 $actions[
'delete'] = $this->
ctrl->getFormAction($this,
'deletePostingDraft');
5606 $this->
ctrl->clearParameters($this);
5608 if ($draft_id !== 0 && $action ===
'editdraft') {
5614 if ($actions !== [] && !$this->objCurrentTopic->isClosed()) {
5616 foreach ($actions as $lng_id =>
$url) {
5617 if ($lng_id ===
'frm_revoke_censorship' || $lng_id ===
'frm_censorship') {
5618 $modalTemplate =
new ilTemplate(
'tpl.forums_censor_modal.html',
true,
true,
'components/ILIAS/Forum');
5619 $form_id = str_replace(
'.',
'_', uniqid(
'form',
true));
5620 $modalTemplate->setVariable(
'FORM_ID', $form_id);
5623 $modalTemplate->setVariable(
'BODY', $this->
lng->txt(
'forums_info_censor2_post'));
5625 $modalTemplate->setVariable(
'BODY', $this->
lng->txt(
'forums_info_censor_post'));
5626 $modalTemplate->touchBlock(
'message');
5629 $modalTemplate->setVariable(
'FORM_ACTION',
$url);
5631 $content = $this->uifactory->legacy()->content($modalTemplate->get());
5632 $submitBtn = $this->uiFactory->button()->primary(
5633 $this->
lng->txt(
'submit'),
5636 static function (
string $id) use ($form_id):
string {
5639 const button = document.getElementById('$id'); 5640 if (!button) return; 5642 const form = document.getElementById('$form_id'); 5645 button.addEventListener('click', (event) => { 5646 event.preventDefault(); 5653 $modal = $this->uiFactory->modal()->roundtrip(
5654 $this->
lng->txt($lng_id),
5656 )->withActionButtons([$submitBtn]);
5657 $items[] = $this->uiFactory->button()->shy($this->
lng->txt($lng_id),
'#')->withOnClick(
5658 $modal->getShowSignal()
5661 $this->modalActionsContainer[] = $modal;
5665 if ($lng_id ===
'delete') {
5666 $modal = $this->uiFactory->modal()->interruptive(
5667 $this->
lng->txt($lng_id),
5668 str_contains(
$url,
'deletePostingDraft') ?
5669 $this->
lng->txt(
'forums_info_delete_draft') :
5670 $this->
lng->txt(
'forums_info_delete_post'),
5672 )->withActionButtonLabel(
5673 $this->
lng->txt(str_contains(
$url,
'deletePostingDraft') ?
'deletePostingDraft' :
'deletePosting')
5676 $items[] = $this->uiFactory->button()->shy($this->
lng->txt($lng_id),
'#')->withOnClick(
5677 $modal->getShowSignal()
5680 $this->modalActionsContainer[] = $modal;
5686 $items[] = $this->uiFactory->button()->shy($this->
lng->txt($lng_id),
$url);
5689 $dropdown = $this->uiFactory->dropdown()->standard($items);
5690 $render_action_buttons = [$dropdown];
5691 if (isset($primary_action, $primary_action_language_id)) {
5692 if ($primary_action_language_id ===
'activate_post') {
5695 $action_button = $this->uiFactory->button()->standard(
5696 $this->
lng->txt($primary_action_language_id),
5700 $tpl->
setVariable(
'MAIN_ACTION', $this->uiRenderer->render($action_button));
5702 $tpl->
setVariable(
'DROPDOWN_ACTIONS', $this->uiRenderer->render($render_action_buttons));
5710 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5719 !$this->
user->isAnonymous() &&
5720 $this->
access->checkAccess(
'add_reply',
'', $this->
object->getRefId()) &&
5735 if ($draftsFromHistory !== []) {
5736 $form_tpl =
new ilTemplate(
'tpl.restore_thread_draft.html',
true,
true,
'components/ILIAS/Forum');
5739 foreach ($draftsFromHistory as $history_instance) {
5741 $accordion->setId(
'acc_' . $history_instance->getHistoryId());
5743 if ($first_open ===
null) {
5744 $first_open = $history_instance->getHistoryId();
5748 $form_tpl->setCurrentBlock(
'list_item');
5752 $history_instance->getDraftDate(),
5755 $this->
ctrl->setParameter($this,
'history_id', $history_instance->getHistoryId());
5756 $header = $history_date .
': ' . $history_instance->getPostSubject();
5759 'tpl.restore_thread_draft_accordion_content.html',
5762 'components/ILIAS/Forum' 5764 $accordion_tpl->setVariable(
'MESSAGE',
$message);
5765 $accordion_tpl->setVariable(
5767 $this->uiRenderer->render(
5768 $this->uiFactory->button()->standard(
5769 $this->
lng->txt(
'restore'),
5770 $this->
ctrl->getLinkTarget($this,
'restoreFromHistory')
5774 $accordion->addItem($header, $accordion_tpl->get());
5776 $form_tpl->setVariable(
'ACC_AUTO_SAVE', $accordion->getHTML());
5777 $form_tpl->parseCurrentBlock();
5780 $form_tpl->setVariable(
'RESTORE_DATA_EXISTS',
'found_threat_history_to_restore');
5782 $modal = $this->ui_factory->modal()->interruptive(
5783 $this->
lng->txt(
'restore_draft_from_autosave'),
5787 return "document.getElementById('$id').dataset.modalId = 'frm_autosave_restore';";
5790 $this->modal_history = $this->ui_renderer->render($modal);
5799 if ($action ===
'showedit' && (
5800 (!$this->is_moderator && !$node->
isOwner($this->user->getId())) ||
5801 $this->
user->isAnonymous() ||
5804 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5805 } elseif ($action ===
'showreply' && !$this->
access->checkAccess(
'add_reply',
'', $this->object->getRefId())) {
5806 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5809 $tpl->
setVariable(
'REPLY_ANKER',
'reply_' . $this->objCurrentPost->getId());
5812 if ($action !==
'editdraft') {
5813 switch ($this->objProperties->getSubjectSetting()) {
5814 case 'add_re_to_subject':
5818 case 'preset_subject':
5819 $subject = $this->objCurrentPost->getSubject();
5822 case 'empty_subject':
5830 if ($this->
ctrl->getCmd() ===
'savePost' || $this->
ctrl->getCmd() ===
'saveAsDraft') {
5831 $oEditReplyForm->setValuesByPost();
5832 } elseif ($this->
ctrl->getCmd() ===
'quotePost') {
5840 $oEditReplyForm->setValuesByPost();
5841 $oEditReplyForm->getItemByPostVar(
'message')->setValue(
5846 $authorinfo->getAuthorName()
5847 ) .
"\n" . $oEditReplyForm->getInput(
'message'),
5852 $oEditReplyForm->setValuesByArray([
5853 'draft_id' => $draft_id,
5855 'subject' => $subject,
5865 if ($this->
ctrl->getCmd() ===
'savePost') {
5866 $oEditReplyForm->setValuesByPost();
5868 $oEditReplyForm->setValuesByArray([
5870 'subject' => $this->objCurrentPost->getSubject(),
5872 $this->objCurrentPost->getMessage(),
5875 'notify' => $this->objCurrentPost->isNotificationEnabled() && !$this->
user->isAnonymous(),
5878 'draft_id' => $draft_id
5884 if (in_array($this->
ctrl->getCmd(), [
'saveDraft',
'updateDraft',
'publishDraft'])) {
5885 $oEditReplyForm->setValuesByPost();
5886 } elseif ($draft_id > 0) {
5888 $this->
user->getId(),
5889 $this->objCurrentPost->getId(),
5892 $oEditReplyForm->setValuesByArray([
5893 'alias' => $draftObject->getPostUserAlias(),
5894 'subject' => $draftObject->getPostSubject(),
5896 $draftObject->getPostMessage(),
5899 'notify' => $draftObject->isNotificationEnabled() && !$this->
user->isAnonymous(),
5902 'draft_id' => $draft_id
5908 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5909 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5910 $this->
ctrl->setParameter($this,
'page', (
int) ($this->httpRequest->getQueryParams()[
'page'] ?? 0));
5911 $this->
ctrl->setParameter(
5916 $this->
ctrl->setParameter(
5921 if ($action !==
'editdraft') {
5922 $tpl->
setVariable(
'FORM', $oEditReplyForm->getHTML());
5924 $this->
ctrl->clearParameters($this);
5929 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
5932 $this->uiFactory->button()->standard(
5933 $this->
lng->txt(
'reset_limited_view_button'),
5934 $this->
ctrl->getLinkTarget($this,
'resetLimitedView')
5938 return $this->uiRenderer->render(
5941 ->
info($this->
lng->txt(
'reset_limited_view_info'))
5942 ->withButtons($buttons)
5951 $this->refinery->kindlyTo()->string(),
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
static _getMediaObjects(string $a_text, int $a_direction=0)
Returns all media objects found in the passed string.
const PAGE_NAME_THREAD_OVERVIEW
array $modalActionsContainer
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
renderPostContent(ilTemplate $tpl, ilForumPost $node, string $action, int $pageIndex, int $postIndex)
setDisplayConfirmPostActivation(bool $status=false)
buildThreadForm(bool $isDraft=false)
delete(?array $posting_ids_to_delete=null)
ILIAS HTTP Services $http
static get(string $a_var)
initEditCustomForm(ilPropertyFormGUI $a_form)
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
button(string $caption, string $cmd)
performMergeThreadsObject()
ilObjectDataCache $ilObjDataCache
bool $display_confirm_post_activation
hasDraftAccess(int|ilForumPostDraft $draft)
static getInstancesByDraftId(int $draft_id)
static moveMediaObjects(string $post_message, string $source_type, int $source_id, string $target_type, int $target_id, int $direction=0)
ilForumProperties $objProperties
This class represents an option in a checkbox group.
static lookupForumIdByObjId(int $obj_id)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
setUserId(?int $a_user_id)
Class ilForumExplorerGUI.
getResetLimitedViewInfo()
ILIAS DI RBACServices $rbac
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
deliverFile(string $file)
GUI class for the workflow of copying objects.
getEditTitleModal(ilForumTopic $topic)
static switchColor(int $a_num, string $a_css1, string $a_css2)
switches style sheets for each even $a_num (used for changing colors of different result rows) ...
ILIAS GlobalScreen Services $globalScreen
renderSortationControl(int $currentSorting)
setMessage(string $a_message)
static _goto($a_target, $a_thread=0, $a_posting=0)
disableForumNotificationObject()
ilNavigationHistory $ilNavigationHistory
prepareOutput(bool $show_sub_objects=true)
autosaveDraftAsyncObject()
Interface Observer Contains several chained tasks and infos about them.
readonly bool $in_page_editor_style_context
getThreadProperties(ilForumTopic $forum_topic)
static _setRichTextEditorUserState(int $a_state)
Sets the state of the rich text editor visibility for the current user.
renderPostingForm(ilTemplate $tpl, ilForum $frm, ilForumPost $node, string $action)
doHistoryCheck(int $draftId)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
markTopThreadInOverview(ilForumTopic $current_thread, Item $list_item)
static _getAllReferences(int $id)
get all reference ids for object ID
Psr Http Message ServerRequestInterface $httpRequest
ILIAS Style Content GUIService $content_style_gui
ilForumTopic $objCurrentTopic
static lookupTitle(int $a_topic_id)
withAdditionalOnLoadCode(Closure $binder)
static getOverallRatingForObject(int $a_obj_id, string $a_obj_type, ?int $a_sub_obj_id=null, ?string $a_sub_obj_type=null, ?int $a_category_id=null)
Get overall rating for an object.
getStickyActionForThread(ilForumTopic $forum_topic, int $ref_id)
publishThreadDraftObject()
renderSplitButton(ilTemplate $tpl, string $action, bool $is_post, ilForumPost $node, int $pageIndex=0, ?ilForumPostDraft $draft=null)
addDraftButtonIfDraftsExists(string $cmd)
ForumThreadTableSessionStorage $forum_thread_table_session_storage
setRepositoryMode(bool $a_repositorymode)
createEmptyThread()
Refactored thread creation to method, refactoring to a separate class should be done in next refactor...
handleCensorship(bool $wasRevoked=false)
static lookupAutosaveInterval()
Class ilForumSettingsGUI.
ensureValidPageForCurrentPosting(array $subtree_nodes, array $pagedPostings, int $pageSize, ilForumPost $firstForumPost)
isOwner(int $a_user_id=0)
initHeaderAction(?string $sub_type=null, ?int $sub_id=null)
static checkAccess(int $a_ref_id, bool $a_allow_only_read=true)
check access to learning progress
Class ilForumNotification.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
static lookupForumIdByRefId(int $ref_id)
addActivationFormModal(ilForumPost $node)
prepareFormOutput(string $a_text)
buildMinimalThreadForm(bool $isDraft=false)
static lookupCreationDate(int $thread_id)
confirmMergeThreadsObject()
isPostNotificationEnabled()
ilForumSettingsGUI $forum_settings_gui
static createDraftBackup(int $draft_id)
saveThreadAsDraftObject()
setSelectedThread(ilForumTopic $thread_obj)
getPostRootNode(bool $isModerator=false, bool $preventImplicitRead=false)
renderDraftContent(ilTemplate $tpl, string $action, ilForumPost $referencePosting, array $drafts)
Class ilForumTopicTableGUI.
Class ilForumDraftHistory.
setColumnSettings(ilColumnGUI $column_gui)
withOnLoadCode(Closure $binder)
static _lookupObjId(int $ref_id)
getActionsForThreadOverview(int $ref_id, ilForumTopic $forum_topic)
static getInstance(int $a_obj_id=0)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
info()
description: > Example for rendering a info message box.
getLinkActionForThread(int $ref_id, string $title, string $cmd, ?int $thread_id=null)
getCenterColumnHTML()
Get center column.
publishDraftObject(bool $use_replyform=true)
afterSave(ilObject $new_object)
ilForumPost $objCurrentPost
GUI class for public user profile presentation.
string $confirmation_gui_html
hideToolbar($a_flag=null)
static http()
Fetches the global http state from ILIAS.
setVariable($variable, $value='')
Sets a variable value.
updateCustom(ilPropertyFormGUI $form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
static _lookupTitle(int $obj_id)
saveUserNotificationSettingsObject()
deletePostingDraftObject()
renderViewModeControl(int $currentViewMode)
static getPublicUserAlias(string $user_alias, bool $is_anonymized)
handleFormInput(string $a_text, bool $a_stripslashes=true)
performThreadsActionObject()
This is how the factory for UI elements looks.
static saveMediaObjects(string $post_message, string $target_type, int $target_id, int $direction=0)
Forum export to HTML and Print.
static isAutoSavePostDraftAllowed()
setChangeDate(?string $a_changedate)
Column user interface class.
saveTopLevelDraftObject()
enableForumNotificationObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getEditFormCustomValues(array &$a_values)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
prepareText(string $text, int $edit=0, string $quote_user='', string $type='')
static _lookupObjIdForForumId(int $a_for_id)
Class ilObjectGUI Basic methods of all Output classes.
static initjQuery(?ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
Common interface to all items.
const PAGE_SIZE_THREAD_OVERVIEW
cancelMoveThreadsObject()
static _recordReadEvent(string $a_type, int $a_ref_id, int $obj_id, int $usr_id, bool $isCatchupWriteEvents=true, $a_ext_rc=null, $a_ext_time=null)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
performMoveThreadsObject()
isWritingWithPseudonymAllowed()
ilForumThreadSettingsSessionStorage $selected_post_storage
__construct($data, int $id=0, bool $call_by_reference=true, bool $prepare_output=true)
static getThreadDraftData(int $post_author_id, int $forum_id)
askForPostActivationObject()
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static _lookupObjectId(int $ref_id)
ensureThreadBelongsToForum(int $objId, ilForumTopic $thread)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
restoreFromHistoryObject()
static getInstanceByType(string $type)
setBlockProperty(string $a_block_type, string $a_property, string $a_value)
This function is supposed to be used for block type specific properties, that should be passed to ilB...
getOpenCloseActionForThread(ilForumTopic $forum_topic, int $ref_id)
static getSyntaxStylePath()
editStylePropertiesObject()
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
deleteThreadDraftsObject()
performDeleteThreadsObject()
ILIAS Style Content Object ObjectFacade $content_style_domain
Last visited history for repository items.
checkDraftAccess(int|ilForumPostDraft $draft)
createTopLevelPostObject()
unlinkFilesByMD5Filenames($hashed_filename_or_filenames)
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
toggleThreadNotificationObject()
isUserAllowedToDeactivateNotification()
static isSavePostDraftAllowed()
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
getSortationViewControl(int $offset)
deliverDraftZipFileObject()
updateThreadDraftObject()
displayConfirmPostActivation()
static _isModerator(int $a_ref_id, int $a_usr_id)
A news item can be created by different sources.
static getSortedDrafts(int $usrId, int $threadId, int $sorting=ilForumProperties::VIEW_DATE_ASC)
ilForumMoveTopicsExplorer
getRightColumnHTML()
Display right column.
getSafePostCommands()
This method must return a list of safe POST commands.
deleteMobsOfDraft(int $draft_id, string $message)
retrieveDraftId(bool $from_post=false)
__construct(Container $dic, ilPlugin $plugin)
autosaveThreadDraftAsyncObject()
static getFirstNewsIdForContext(int $a_context_obj_id, string $a_context_obj_type, int $a_context_sub_obj_id=0, string $a_context_sub_obj_type="")
Get first new id of news set related to a certain context.
const LP_CONTEXT_REPOSITORY
This class represents a text area property in a property form.
const PRESENTATION_MODE_PRESENTATION
presentation mode for requesting
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
confirmDeleteThreadDraftsObject()
publishSelectedDraftObject()
createThread(ilForumPostDraft $draft, bool $createFromDraft=false)
Refactored thread creation to method, refactoring to a separate class should be done in next refactor...
toggleExplorerNodeState()
Should be called by an ilCtrl-enabled command class if a tree node toggle action should be processed...
ilPropertyFormGUI $replyEditForm
static lookupForumIdByTopicId(int $a_topic_id)
decorateWithAutosave(ilPropertyFormGUI $form)
renderThreadOverview(ilForum $frm, ForumDto $frm_object)
This describes a Standard Dropdown.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static newInstanceByDraftId(int $draft_id)
static getDraftInstancesByUserId(int $user_id)
getUnsafeGetCommands()
This method must return a list of unsafe GET commands.
editThreadDraftObject(?ilPropertyFormGUI $form=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getSearchBlockHTML(string $a_title)
eventsFormBuilder(?array $predefined_values=null)
addHeaderAction()
Add header action menu.
addItem(int $a_ref_id, string $a_link, string $a_type, string $a_title="", ?int $a_sub_obj_id=null, string $a_goto_link="")
Add an item to the stack.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjUserTrackingGUI.
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static set(string $a_var, $a_val)
Set a value.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
performPostActivationObject()
toggleExplorerNodeStateObject()
ilForumPageGUI: ilPageEditorGUI, ilEditClipboardGUI, ilMDEditorGUI ilForumPageGUI: ilPublicUserProfi...