19 declare(strict_types=1);
59 private \ILIAS\HTTP\Services
$http;
70 public \ILIAS\DI\RBACServices
$rbac;
81 $this->
ctrl = $DIC->ctrl();
82 $this->
ctrl->saveParameter($this, [
'ref_id']);
84 $this->httpRequest = $DIC->http()->request();
85 $this->
http = $DIC->http();
87 $this->uiFactory = $DIC->ui()->factory();
88 $this->uiRenderer = $DIC->ui()->renderer();
91 $this->ilObjDataCache = $DIC[
'ilObjDataCache'];
93 $this->
ilHelp = $DIC[
'ilHelp'];
94 $this->
rbac = $DIC->rbac();
99 $this->tpl->addJavaScript(
'./Services/JavaScript/js/Basic.js');
101 $this->
lng->loadLanguageModule(
'forum');
102 $this->
lng->loadLanguageModule(
'content');
108 $pos_pk = $this->retrieveIntOrZeroFrom($this->
http->wrapper()->query(),
'pos_pk');
111 $this->is_moderator = $this->
access->checkAccess(
'moderate_frm',
'',
$ref_id);
113 $this->objCurrentTopic =
new ilForumTopic($thr_pk, $this->is_moderator);
117 $this->selected_post_storage->get($thr_pk) ?? 0,
120 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
122 $this->selected_post_storage->set($this->objCurrentTopic->getId(), 0);
129 $this->requestAction = (string) ($this->httpRequest->getQueryParams()[
'action'] ??
'');
130 $cs = $DIC->contentStyle();
131 $this->content_style_gui = $cs->gui();
132 if (is_object($this->
object)) {
133 $this->content_style_domain = $cs->domain()->styleForRefId($this->
object->getRefId());
140 if (!is_array($forumValues)) {
145 $threadId = $this->httpRequest->getQueryParams()[
'thr_pk'] ?? 0;
146 if ((
int) $threadId > 0 && !isset($forumValues[(
int) $threadId])) {
147 $forumValues[(
int) $threadId] = [];
156 return $this->retrieveIntOrZeroFrom($this->
http->wrapper()->query(),
'ref_id');
161 return $this->retrieveIntOrZeroFrom($this->
http->wrapper()->query(),
'thr_pk');
167 if ($this->
http->wrapper()->post()->has(
'thread_ids')) {
168 $thread_ids = $this->
http->wrapper()->post()->retrieve(
179 return $this->retrieveIntOrZeroFrom($this->
http->wrapper()->query(),
'draft_id');
185 'frm_exp_' . $this->objCurrentTopic->getId(),
195 array $subtree_nodes,
196 array $pagedPostings,
200 if ($firstForumPost->
getId() === $this->objCurrentPost->getId()) {
204 if (count($subtree_nodes) > 0 && $this->objCurrentPost->getId() > 0) {
205 $isCurrentPostingInPage = array_filter($pagedPostings,
function (
ilForumPost $posting):
bool {
206 return $posting->
getId() === $this->objCurrentPost->getId();
209 if (0 === count($isCurrentPostingInPage)) {
210 $pageOfCurrentPosting = 0;
212 foreach ($subtree_nodes as $node) {
213 if (
$i > 0 && 0 ===
$i % $pageSize) {
214 ++$pageOfCurrentPosting;
217 if ($node->getId() === $this->objCurrentPost->getId()) {
224 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
225 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
226 $this->
ctrl->setParameter($this,
'page', $pageOfCurrentPosting);
227 $this->
ctrl->setParameter(
232 $this->
ctrl->redirect($this,
'viewThread', (
string) $this->objCurrentPost->getId());
241 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
252 $this->tpl->addJavaScript(
'./Modules/Forum/js/autosave.js');
253 $autosave_cmd =
'autosaveDraftAsync';
254 if ($this->objCurrentPost->getId() === 0 && $this->objCurrentPost->getThreadId() === 0) {
255 $autosave_cmd =
'autosaveThreadDraftAsync';
257 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
258 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
259 $draft_id = max($draft_id, 0);
260 $this->
ctrl->setParameter($this,
'draft_id', $draft_id);
262 $this->tpl->addOnLoadCode(
263 "il.Language.setLangVar('saving', " . json_encode($this->
lng->txt(
'saving'), JSON_THROW_ON_ERROR) .
");" 266 $this->tpl->addOnLoadCode(
'il.ForumDraftsAutosave.init(' . json_encode([
268 'draft_id' => $draft_id,
269 'interval' => $interval * 1000,
270 'url' => $this->
ctrl->getFormAction($this, $autosave_cmd,
'',
true),
272 'form' =>
'#form_' . $form->
getId()
274 ], JSON_THROW_ON_ERROR) .
');');
281 strtolower($this->
ctrl->getCmd()),
282 array_map(
'strtolower', [
'createTopLevelPost',
'saveTopLevelPost',
'saveTopLevelDraft']),
290 'enableForumNotification',
291 'disableForumNotification',
292 'toggleThreadNotification' 303 $next_class = $this->
ctrl->getNextClass($this);
304 $cmd = $this->
ctrl->getCmd();
310 'showThreadNotification',
311 'performPostActivation',
312 'askForPostActivation',
313 'askForPostDeactivation',
314 'toggleThreadNotification',
315 'toggleThreadNotificationTab',
320 'createTopLevelPost',
323 'getQuotationHTMLAsynch',
324 'autosaveDraftAsync',
325 'autosaveThreadDraftAsync',
329 'deliverDraftZipFile',
332 'deleteThreadDrafts',
334 'deletePostingDraft',
339 if (!in_array($cmd, $exclude_cmds,
true)) {
357 switch (strtolower($next_class)) {
358 case strtolower(ilForumPageGUI::class):
359 if (in_array(strtolower($cmd), array_map(
'strtolower', [
360 self::UI_CMD_COPAGE_DOWNLOAD_FILE,
361 self::UI_CMD_COPAGE_DISPLAY_FULLSCREEN,
362 self::UI_CMD_COPAGE_DOWNLOAD_PARAGRAPH,
366 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
369 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
372 $this->content_style_gui->addCss($this->tpl, $this->ref_id);
373 $this->tpl->setCurrentBlock(
'SyntaxStyle');
375 $this->tpl->parseCurrentBlock();
387 $this->content_style_domain
390 $pageContent = $forwarder->forward();
391 if ($pageContent !==
'') {
392 $this->tpl->setContent($pageContent);
396 case strtolower(ilLearningProgressGUI::class):
398 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
401 $this->tabs_gui->activateTab(
'learning_progress');
403 $usrId = $this->
user->getId();
405 isset($this->request->getQueryParams()[
'user_id']) &&
406 is_numeric($this->request->getQueryParams()[
'user_id'])
408 $usrId = (
int) $this->request->getQueryParams()[
'user_id'];
413 $this->
object->getRefId(),
418 case strtolower(ilObjectContentStyleSettingsGUI::class):
421 $settings_gui = $this->content_style_gui
422 ->objectSettingsGUIForRefId(
426 $this->
ctrl->forwardCommand($settings_gui);
429 case strtolower(ilForumSettingsGUI::class):
431 $this->
ctrl->forwardCommand($forum_settings_gui);
434 case strtolower(ilRepositoryObjectSearchGUI::class):
437 $this->tabs_gui->activateTab(
"forums_threads");
438 $this->
ctrl->setReturn($this,
'view');
440 $this->
object->getRefId(),
444 $this->
ctrl->forwardCommand($search_gui);
447 case strtolower(ilPermissionGUI::class):
449 $this->
ctrl->forwardCommand($perm_gui);
452 case strtolower(ilForumExportGUI::class):
454 $this->
ctrl->forwardCommand($fex_gui);
455 $this->
http->close();
458 case strtolower(ilForumModeratorsGUI::class):
460 $this->
ctrl->forwardCommand($fm_gui);
463 case strtolower(ilInfoScreenGUI::class):
467 case strtolower(ilColumnGUI::class):
471 case strtolower(ilPublicUserProfileGUI::class):
472 $user = $this->retrieveIntOrZeroFrom($this->
http->wrapper()->query(),
'user');
475 $profile_gui->setAdditional($add);
476 $ret = $this->
ctrl->forwardCommand($profile_gui);
477 $this->tpl->setContent($ret);
480 case strtolower(ilObjectCopyGUI::class):
483 $this->
ctrl->forwardCommand($cp);
486 case strtolower(ilExportGUI::class):
487 $this->tabs_gui->activateTab(
'export');
489 $exp->addFormat(
'xml');
490 $this->
ctrl->forwardCommand($exp);
493 case strtolower(ilRatingGUI::class):
494 if (!$this->objProperties->isIsThreadRatingEnabled() || $this->
user->isAnonymous()) {
495 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
498 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
499 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
505 $rating_gui->setObject(
507 $this->
object->getType(),
508 $this->objCurrentTopic->getId(),
512 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
513 $this->
ctrl->forwardCommand($rating_gui);
517 $this->
object->getType(),
518 $this->objCurrentTopic->getId(),
521 $this->objCurrentTopic->setAverageRating($avg[
'avg']);
522 $this->objCurrentTopic->update();
524 $this->
ctrl->redirect($this,
"showThreads");
527 case strtolower(ilCommonActionDispatcherGUI::class):
529 $this->
ctrl->forwardCommand($gui);
532 case strtolower(ilContainerNewsSettingsGUI::class):
536 $this->
lng->loadLanguageModule(
'cont');
538 $news_set_gui->setNewsBlockForced(
true);
539 $news_set_gui->setPublicNotification(
true);
540 $this->
ctrl->forwardCommand($news_set_gui);
545 $notificationCommands = [
546 'enableAdminForceNoti',
547 'disableAdminForceNoti',
548 'enableHideUserToggleNoti',
549 'disableHideUserToggleNoti' 552 if (!in_array($cmd, $notificationCommands,
true)) {
553 $cmd =
'performThreadsAction';
555 } elseif (($cmd === null || $cmd ===
'') && $this->
getTableCommands() === []) {
556 $cmd =
'showThreads';
566 $cmd !==
'viewThreadObject' && $cmd !==
'showUserObject' && !in_array(
567 strtolower($next_class),
568 array_map(
'strtolower', [ilForumPageGUI::class]),
582 if ($this->
http->wrapper()->post()->has(
'selected_cmd')) {
583 $tableCommands[] = $this->
http->wrapper()->post()->retrieve(
585 $this->
refinery->kindlyTo()->string()
588 if ($this->
http->wrapper()->post()->has(
'selected_cmd2')) {
589 $tableCommands[] = $this->
http->wrapper()->post()->retrieve(
591 $this->
refinery->kindlyTo()->string()
595 return $tableCommands;
600 $this->
ctrl->setCmd(
'showSummary');
601 $this->
ctrl->setCmdClass(
'ilinfoscreengui');
608 $this->forum_settings_gui->getCustomForm($a_form);
613 $this->forum_settings_gui->getCustomValues($a_values);
618 $this->forum_settings_gui->updateCustomValues($form);
624 $this->
ctrl->setParameter($this,
'thr_pk', $a_thread_id);
625 $form->setFormAction($this->
ctrl->getFormAction($this,
'updateThread'));
628 $ti_prop->setRequired(
true);
629 $ti_prop->setMaxLength(255);
630 $ti_prop->setSize(50);
631 $form->addItem($ti_prop);
633 $form->addCommandButton(
'updateThread', $this->
lng->txt(
'save'));
634 $form->addCommandButton(
'showThreads', $this->
lng->txt(
'cancel'));
641 if (!$this->is_moderator) {
642 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
645 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
646 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
652 $this->tabs_gui->activateTab(
'forums_threads');
656 $form->setValuesByArray([
657 'title' => $thread->getSubject()
661 $this->tpl->setContent($form->getHTML());
666 if (!$this->is_moderator) {
667 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
670 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
671 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
674 if (!$this->objCurrentTopic->getId()) {
682 if (!$form->checkInput()) {
683 $form->setValuesByPost();
688 $this->objCurrentTopic->setSubject($form->getInput(
'title'));
689 $this->objCurrentTopic->updateThreadTitle();
691 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
697 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
698 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
701 $this->
object->markAllThreadsRead($this->
user->getId());
702 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_all_threads_marked_read'));
722 if ($this->is_moderator && $this->objProperties->getThreadSorting() === 1) {
723 $this->tabs_gui->addSubTabTarget(
725 $this->
ctrl->getLinkTarget($this,
'showThreads'),
729 $subtab ===
'showThreads' 732 if ($this->
object->getNumStickyThreads() > 1) {
733 $this->tabs_gui->addSubTabTarget(
734 'sticky_threads_sorting',
735 $this->
ctrl->getLinkTarget($this,
'sortThreads'),
739 $subtab ===
'sortThreads' 747 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
748 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
751 $cmd = $this->
ctrl->getCmd();
752 $frm = $this->
object->Forum;
753 $frm->setForumId($this->
object->getId());
754 $frm->setForumRefId($this->
object->getRefId());
755 $frm->setMDB2Wherecondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
758 'tpl.forums_threads_liste.html',
764 if ($this->confirmation_gui_html !==
'') {
765 $threadsTemplate->setVariable(
'CONFIRMATION_GUI', $this->confirmation_gui_html);
769 if (!$this->
hideToolbar() && $this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId())) {
771 $btn->setUrl($this->
ctrl->getLinkTarget($this,
'createThread'));
772 $btn->setCaption(
'forums_new_thread');
773 $this->
toolbar->addStickyItem($btn);
777 if ($this->confirmation_gui_html ===
'' && !$this->
user->isAnonymous()) {
779 $this->
lng->txt(
'forums_mark_read'),
780 $this->
ctrl->getLinkTarget($this,
'markAllRead')
782 $this->
ctrl->clearParameters($this);
785 if (!$this->
user->isAnonymous() && $this->
access->checkAccess(
'write',
'', $this->ref_id)) {
786 $this->
lng->loadLanguageModule(
'cntr');
788 $this->uiFactory->button()->standard(
789 $this->
lng->txt(
'cntr_text_media_editor'),
790 $this->
ctrl->getLinkTargetByClass(ilForumPageGUI::class,
'edit')
797 $this->
user->getId(),
800 if (count($drafts) > 0) {
804 $this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId())
806 $draftsTable->setData($drafts);
807 $threadsTemplate->setVariable(
'THREADS_DRAFTS_TABLE', $draftsTable->getHTML());
812 $topicData = $frm->getOneTopic();
813 if ($topicData->getTopPk() > 0) {
814 $frm->setDbTable(
'frm_data');
815 $frm->setMDB2WhereCondition(
'top_pk = %s ', [
'integer'], [$topicData->getTopPk()]);
816 $frm->updateVisits($topicData->getTopPk());
820 $this->
object->getRefId(),
821 $this->
object->getId(),
825 if (!in_array($cmd, [
'showThreads',
'sortThreads'])) {
826 $cmd =
'showThreads';
840 $tbl->setMapper($frm)->fetchData();
841 $threadsTemplate->setVariable(
'THREADS_TABLE', $tbl->getHTML());
844 $this->tpl->setPermanentLink($this->
object->getType(), $this->
object->getRefId(),
'',
'_top');
855 $this->content_style_domain
859 $this->tpl->setContent($forwarder->forward() . $threadsTemplate->get());
866 $this->content_style_gui->addCss($this->tpl, $this->ref_id);
867 $this->tpl->setCurrentBlock(
'SyntaxStyle');
869 $this->tpl->parseCurrentBlock();
887 $frm = $this->
object->Forum;
892 foreach ($drafts as $draft) {
894 $filesOfDraft = $tmp_file_obj->getFilesOfPost();
895 ksort($filesOfDraft);
897 if ($action !==
'showdraft' && $filesOfDraft !== []) {
898 foreach ($filesOfDraft as $file) {
900 $this->
ctrl->setParameter($this,
'draft_id', $tmp_file_obj->getDraftId());
901 $this->
ctrl->setParameter($this,
'file', $file[
'md5']);
902 $tpl->
setVariable(
'HREF_DOWNLOAD', $this->
ctrl->getLinkTarget($this,
'viewThread'));
904 $this->
ctrl->setParameter($this,
'file',
'');
905 $this->
ctrl->setParameter($this,
'draft_id',
'');
906 $this->
ctrl->clearParameters($this);
911 $tpl->
setVariable(
'TXT_ATTACHMENTS_DOWNLOAD', $this->
lng->txt(
'forums_attachments'));
916 if (count($filesOfDraft) > 1) {
918 $download_zip_button->setCaption($this->
lng->txt(
'download'),
false);
919 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
920 $download_zip_button->setUrl($this->
ctrl->getLinkTarget($this,
'deliverDraftZipFile'));
921 $this->
ctrl->setParameter($this,
'draft_id',
'');
922 $tpl->
setVariable(
'DOWNLOAD_ZIP', $download_zip_button->render());
928 if ($this->
http->wrapper()->query()->has(
'page')) {
929 $page = $this->
http->wrapper()->query()->retrieve(
943 $rowCol =
'tblrowmarked';
945 $depth = $referencePosting->
getDepth() - 1;
951 $this->
ctrl->setParameter($this,
'pos_pk', $referencePosting->
getId());
952 $this->
ctrl->setParameter($this,
'thr_pk', $referencePosting->
getThreadId());
953 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
955 $backurl = urlencode($this->
ctrl->getLinkTarget($this,
'viewThread', (
string) $referencePosting->
getId()));
957 $this->
ctrl->setParameter($this,
'backurl', $backurl);
958 $this->
ctrl->setParameter($this,
'thr_pk', $referencePosting->
getThreadId());
959 $this->
ctrl->setParameter($this,
'user', $draft->getPostDisplayUserId());
962 $draft->getPostAuthorId(),
963 $draft->getPostDisplayUserId(),
964 $draft->getPostUserAlias(),
967 'href' => $this->
ctrl->getLinkTarget($this,
'showUser')
971 $this->
ctrl->clearParameters($this);
973 if ($authorinfo->hasSuffix()) {
974 $tpl->
setVariable(
'AUTHOR', $authorinfo->getSuffix());
975 $tpl->
setVariable(
'USR_NAME', $draft->getPostUserAlias());
977 $tpl->
setVariable(
'AUTHOR', $authorinfo->getLinkedAuthorShortName());
978 if ($authorinfo->getAuthorName(
true) && !$this->objProperties->isAnonymized()) {
979 $tpl->
setVariable(
'USR_NAME', $authorinfo->getAuthorName(
true));
982 $tpl->
setVariable(
'DRAFT_ANCHOR',
'draft_' . $draft->getDraftId());
984 $tpl->
setVariable(
'USR_IMAGE', $authorinfo->getProfilePicture());
991 $draft->getPostAuthorId()
993 if ($authorinfo->getAuthor()->getGender() ===
'f') {
995 } elseif ($authorinfo->getAuthor()->getGender() ===
'm') {
997 } elseif ($authorinfo->getAuthor()->getGender() ===
'n') {
1002 if ($draft->getUpdateUserId() > 0) {
1003 $draft->setPostUpdate($draft->getPostUpdate());
1005 $this->
ctrl->setParameter($this,
'backurl', $backurl);
1006 $this->
ctrl->setParameter($this,
'thr_pk', $referencePosting->
getThreadId());
1008 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
1011 $draft->getPostAuthorId(),
1013 $draft->getPostDisplayUserId(),
1014 $draft->getPostUserAlias(),
1016 [
'href' => $this->
ctrl->getLinkTarget($this,
'showUser')]
1019 $this->
ctrl->clearParameters($this);
1023 $this->
lng->txt(
'edited_on') .
': ' . $frm->convertDate($draft->getPostUpdate()) .
' - ' . strtolower($this->
lng->txt(
'by'))
1025 $tpl->
setVariable(
'UPDATE_AUTHOR', $authorinfo->getLinkedAuthorShortName());
1026 if ($authorinfo->getAuthorName(
true) && !$this->objProperties->isAnonymized() && !$authorinfo->hasSuffix()) {
1027 $tpl->
setVariable(
'UPDATE_USR_NAME', $authorinfo->getAuthorName(
true));
1031 $draft->setPostMessage($frm->prepareText($draft->getPostMessage()));
1033 $tpl->
setVariable(
'SUBJECT', $draft->getPostSubject());
1034 $tpl->
setVariable(
'POST_DATE', $frm->convertDate($draft->getPostDate()));
1036 if (!$referencePosting->
isCensored() || ($this->objCurrentPost->getId() === $referencePosting->
getId() && $action ===
'censor')) {
1039 $spanClass =
'moderator';
1042 if ($draft->getPostMessage() === strip_tags($draft->getPostMessage())) {
1044 $draft->setPostMessage(nl2br($draft->getPostMessage()));
1047 if ($spanClass !==
"") {
1051 $draft->getPostMessage(),
1060 if ($action ===
'editdraft' && $draft->getDraftId() === $draft_id) {
1063 if (!$this->objCurrentTopic->isClosed() && in_array($this->requestAction, [
'showdraft',
'editdraft'])) {
1064 $this->renderPostingForm($tpl, $frm, $referencePosting, $this->requestAction);
1067 $tpl->
setVariable(
'EDIT_DRAFT_ANCHOR',
'draft_edit_' . $draft->getDraftId());
1083 $frm = $this->
object->Forum;
1088 ksort($filesOfPost);
1089 if (count($filesOfPost) > 0) {
1090 if ($action !==
'showedit' || $node->
getId() !== $this->objCurrentPost->getId()) {
1091 foreach ($filesOfPost as $file) {
1093 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
1094 $this->
ctrl->setParameter($this,
'file', $file[
'md5']);
1095 $tpl->
setVariable(
'HREF_DOWNLOAD', $this->
ctrl->getLinkTarget($this,
'viewThread'));
1097 $this->
ctrl->clearParameters($this);
1102 $tpl->
setVariable(
'TXT_ATTACHMENTS_DOWNLOAD', $this->
lng->txt(
'forums_attachments'));
1107 if (count($filesOfPost) > 1) {
1109 $download_zip_button->setCaption($this->
lng->txt(
'download'),
false);
1110 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
1111 $download_zip_button->setUrl($this->
ctrl->getLinkTarget($this,
'deliverZipFile'));
1113 $tpl->
setVariable(
'DOWNLOAD_ZIP', $download_zip_button->render());
1122 $tpl->
setVariable(
'TXT_PERMA_LINK', $this->
lng->txt(
'perma_link'));
1126 if (($this->is_moderator || $node->
isOwner($this->user->getId())) && !$node->
isActivated() && !$this->objCurrentTopic->isClosed()) {
1127 $rowCol =
'ilPostingNeedsActivation';
1128 } elseif ($this->objProperties->getMarkModeratorPosts()) {
1131 $rowCol =
'ilModeratorPosting';
1133 $rowCol =
'ilModeratorPosting';
1139 $this->objCurrentPost->getId() !== $node->
getId()
1143 $rowCol =
'tblrowmarked';
1147 if ($action !==
'censor') {
1148 $tpl->
setVariable(
'TXT_CENSORSHIP_ADVICE', $this->
lng->txt(
'post_censored_comment_by_moderator'));
1151 $rowCol =
'tblrowmarked';
1157 $tpl->
setVariable(
'POST_NOT_ACTIVATED_YET', $this->
lng->txt(
'frm_post_not_activated_yet'));
1160 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
1162 $backurl = urlencode($this->
ctrl->getLinkTarget($this,
'viewThread', (
string) $node->
getId()));
1163 $this->
ctrl->clearParameters($this);
1165 $this->
ctrl->setParameter($this,
'backurl', $backurl);
1174 'href' => $this->
ctrl->getLinkTarget($this,
'showUser')
1177 $this->
ctrl->clearParameters($this);
1179 if ($authorinfo->hasSuffix()) {
1180 if (!$authorinfo->isDeleted()) {
1181 $tpl->
setVariable(
'USR_NAME', $authorinfo->getAlias());
1183 $tpl->
setVariable(
'AUTHOR', $authorinfo->getSuffix());
1185 if ($authorinfo->getAuthorName(
true) && !$this->objProperties->isAnonymized()) {
1186 $tpl->
setVariable(
'USR_NAME', $authorinfo->getAuthorName(
true));
1188 $tpl->
setVariable(
'AUTHOR', $authorinfo->getLinkedAuthorShortName());
1191 $tpl->
setVariable(
'USR_IMAGE', $authorinfo->getProfilePicture());
1197 if ($isModerator && $authorinfo->getAuthor()->getId()) {
1198 $authorRole = $this->
lng->txt(
'frm_moderator_n');
1199 if (is_string($authorinfo->getAuthor()->getGender()) && $authorinfo->getAuthor()->getGender() !==
'') {
1200 $authorRole = $this->
lng->txt(
'frm_moderator_' . $authorinfo->getAuthor()->getGender());
1208 $this->
ctrl->setParameter($this,
'backurl', $backurl);
1221 'href' => $this->
ctrl->getLinkTarget($this,
'showUser')
1224 $this->
ctrl->clearParameters($this);
1228 $this->
lng->txt(
'edited_on') .
': ' . $frm->convertDate($node->
getChangeDate()) .
' - ' . strtolower($this->
lng->txt(
'by'))
1230 $tpl->
setVariable(
'UPDATE_AUTHOR', $authorinfo->getLinkedAuthorShortName());
1231 if ($authorinfo->getAuthorName(
true) && !$this->objProperties->isAnonymized() && !$authorinfo->hasSuffix()) {
1232 $tpl->
setVariable(
'UPDATE_USR_NAME', $authorinfo->getAuthorName(
true));
1237 && $node->
getId() !== $this->selected_post_storage->get($node->
getThreadId())) {
1238 $target = $this->uiFactory->symbol()->icon()->custom(
1240 $this->
lng->txt(
'target_select')
1243 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
1248 $this->uiRenderer->render(
1249 $this->uiFactory->link()->bulky(
1251 $this->
lng->txt(
'select'),
1252 new \ILIAS\Data\URI(
1253 ILIAS_HTTP_PATH .
'/' . $this->
ctrl->getLinkTarget($this,
'selectPost', (
string) $node->
getId())
1265 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
1267 $this->
ctrl->setParameter($this,
'page', $pageIndex);
1268 $this->
ctrl->setParameter(
1273 $this->
ctrl->setParameter($this,
'viewmode', $this->selectedSorting);
1274 $mark_post_target = $this->
ctrl->getLinkTarget($this,
'markPostRead', (
string) $node->
getId());
1278 "<a href=\"" . $mark_post_target .
"\"><b>" . $node->
getSubject() .
"</b></a>" 1284 if (!$node->
isCensored() || ($this->objCurrentPost->getId() === $node->
getId() && $action ===
'censor')) {
1287 $spanClass =
'moderator';
1296 if ($spanClass !==
'') {
1299 "<span class=\"" . $spanClass .
"\">" .
1315 $thr_pk = (
int) $this->httpRequest->getQueryParams()[
'thr_pk'];
1316 $pos_pk = (
int) $this->httpRequest->getQueryParams()[
'pos_pk'];
1318 $this->selected_post_storage->set(
1331 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'frm_added'),
true);
1332 $this->
ctrl->setParameter($this,
'ref_id', $new_object->
getRefId());
1333 $this->
ctrl->redirect($this,
'createThread');
1338 $this->
ilHelp->setScreenIdComponent(
"frm");
1340 $this->
ctrl->setParameter($this,
'ref_id', $this->ref_id);
1348 'enableForumNotification',
1349 'disableForumNotification',
1351 'performMoveThreads',
1352 'cancelMoveThreads',
1353 'performThreadsAction',
1357 'confirmDeleteThreads',
1360 'performMergeThreads' 1363 $force_active =
false;
1364 if (in_array($this->
ctrl->getCmd(), $active,
true)) {
1365 $force_active =
true;
1368 if ($this->
access->checkAccess(
1373 $this->tabs_gui->addTarget(
1374 self::UI_TAB_ID_THREADS,
1375 $this->
ctrl->getLinkTarget($this,
'showThreads'),
1376 $this->
ctrl->getCmd(),
1383 if ($this->
access->checkAccess(
'visible',
'', $this->ref_id) || $this->
access->checkAccess(
1389 if ($this->
http->wrapper()->query()->has(
'cmdClass')) {
1390 $cmdClass = $this->
http->wrapper()->query()->retrieve(
1392 $this->
refinery->kindlyTo()->string()
1396 $force_active = $this->
ctrl->getNextClass() ===
'ilinfoscreengui' || strtolower($cmdClass) ===
'ilnotegui';
1397 $this->tabs_gui->addTarget(
1398 self::UI_TAB_ID_INFO,
1399 $this->
ctrl->getLinkTargetByClass([__CLASS__, ilInfoScreenGUI::class],
'showSummary'),
1400 [
'showSummary',
'infoScreen'],
1407 if ($this->
access->checkAccess(
'write',
'', $this->ref_id)) {
1408 $force_active = $this->
ctrl->getCmd() ===
'edit';
1409 $this->tabs_gui->addTarget(
1410 self::UI_TAB_ID_SETTINGS,
1411 $this->
ctrl->getLinkTarget($this,
'edit'),
1419 if ($this->
access->checkAccess(
'write',
'', $this->ref_id)) {
1420 $this->tabs_gui->addTarget(
1421 self::UI_TAB_ID_MODERATORS,
1422 $this->
ctrl->getLinkTargetByClass(ilForumModeratorsGUI::class,
'showModerators'),
1429 $this->tabs_gui->addTab(
1430 'learning_progress',
1431 $this->
lng->txt(
'learning_progress'),
1432 $this->
ctrl->getLinkTargetByClass(ilLearningProgressGUI::class)
1436 if ($this->
settings->get(
'enable_fora_statistics',
'0')) {
1437 $hasStatisticsAccess = $this->
access->checkAccess(
'write',
'', $this->ref_id);
1438 if (!$hasStatisticsAccess) {
1439 $hasStatisticsAccess = (
1440 $this->objProperties->isStatisticEnabled() &&
1441 $this->
access->checkAccess(
'read',
'', $this->ref_id)
1445 if ($hasStatisticsAccess) {
1446 $force_active = $this->
ctrl->getCmd() ===
'showStatistics';
1447 $this->tabs_gui->addTarget(
1448 self::UI_TAB_ID_STATS,
1449 $this->
ctrl->getLinkTarget($this,
'showStatistics'),
1458 if ($this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
1459 $this->tabs_gui->addTarget(
1460 self::UI_TAB_ID_EXPORT,
1461 $this->
ctrl->getLinkTargetByClass(ilExportGUI::class,
''),
1467 if ($this->
access->checkAccess(
'edit_permission',
'', $this->ref_id)) {
1468 $this->tabs_gui->addTarget(
1469 self::UI_TAB_ID_PERMISSIONS,
1470 $this->
ctrl->getLinkTargetByClass([get_class($this), ilPermissionGUI::class],
'perm'),
1471 [
'perm',
'info',
'owner'],
1479 if (!$this->
settings->get(
'enable_fora_statistics',
'0')) {
1480 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1483 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1484 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1487 if (!$this->objProperties->isStatisticEnabled()) {
1488 if ($this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
1489 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'frm_statistics_disabled_for_participants'));
1491 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1495 $this->
object->Forum->setForumId($this->
object->getId());
1503 $this->
access->checkRbacOrPositionPermissionAccess(
1504 'read_learning_progress',
1505 'read_learning_progress',
1506 $this->object->getRefId()
1509 $tbl->setId(
'il_frm_statistic_table_' . $this->
object->getRefId());
1511 $this->
lng->txt(
'statistic'),
1513 $this->
lng->txt(
'obj_' . $this->
object->getType())
1516 $data = $this->
object->Forum->getUserStatistics($this->objProperties->isPostActivationEnabled());
1519 foreach (
$data as $row) {
1520 $result[$counter][
'usr_id'] = $row[
'usr_id'];
1521 $result[$counter][
'ranking'] = $row[
'num_postings'];
1522 $result[$counter][
'login'] = $row[
'login'];
1523 $result[$counter][
'lastname'] = $row[
'lastname'];
1524 $result[$counter][
'firstname'] = $row[
'firstname'];
1528 $tbl->setData($result);
1530 $this->tpl->setContent($tbl->getHTML());
1533 public static function _goto($a_target, $a_thread = 0, $a_posting = 0): void
1536 $main_tpl = $DIC->ui()->mainTemplate();
1538 $ilAccess = $DIC->access();
1539 $lng = $DIC->language();
1542 $a_target = is_numeric($a_target) ? (
int) $a_target : 0;
1543 $a_thread = is_numeric($a_thread) ? (
int) $a_thread : 0;
1544 if ($ilAccess->checkAccess(
'read',
'', $a_target)) {
1545 if ($a_thread !== 0) {
1547 if ($objTopic->getFrmObjId() &&
1550 foreach ($ref_ids as
$ref_id) {
1551 if ($ilAccess->checkAccess(
'read',
'', $ref_id)) {
1557 if (isset($new_ref_id) && $new_ref_id !== $a_target) {
1558 $DIC->ctrl()->redirectToURL(
1559 ILIAS_HTTP_PATH .
'/goto.php?target=frm_' . $new_ref_id .
'_' . $a_thread .
'_' . $a_posting
1564 $DIC->ctrl()->setParameterByClass(__CLASS__,
'ref_id', (
string) ((
int) $a_target));
1565 if (is_numeric($a_thread)) {
1566 $DIC->ctrl()->setParameterByClass(__CLASS__,
'thr_pk', (
string) ((
int) $a_thread));
1568 if (is_numeric($a_posting)) {
1569 $DIC->ctrl()->setParameterByClass(__CLASS__,
'pos_pk', (
string) ((
int) $a_posting));
1571 $DIC->ctrl()->redirectByClass(
1572 [ilRepositoryGUI::class, self::class],
1574 is_numeric($a_posting) ? (
string) ((
int) $a_posting) :
'' 1577 $DIC->ctrl()->setParameterByClass(self::class,
'ref_id', $a_target);
1578 $DIC->ctrl()->redirectByClass([ilRepositoryGUI::class, self::class,],
'');
1579 $DIC->http()->close();
1581 } elseif ($ilAccess->checkAccess(
'visible',
'', $a_target)) {
1582 $DIC->ctrl()->setParameterByClass(ilInfoScreenGUI::class,
'ref_id', $a_target);
1583 $DIC->ctrl()->redirectByClass(
1585 ilRepositoryGUI::class,
1587 ilInfoScreenGUI::class
1592 $main_tpl->setOnScreenMessage(
'info', sprintf(
1593 $lng->
txt(
'msg_no_perm_read_item'),
1596 $DIC->http()->close();
1605 if ($threadIds === []) {
1606 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'),
true);
1607 $this->
ctrl->redirect($this,
'showThreads');
1610 if (!$this->is_moderator) {
1611 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1614 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1615 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1619 $this->objProperties->setObjId($forumObj->getId());
1623 $success_message =
"forums_thread_deleted";
1624 if (count($threadIds) > 1) {
1625 $success_message =
"forums_threads_deleted";
1629 array_walk($threadIds,
function (
int $threadId) use (&$threads) {
1633 $threads[] = $thread;
1636 $frm->setForumId($forumObj->getId());
1637 $frm->setForumRefId($forumObj->getRefId());
1638 foreach ($threads as $thread) {
1639 $first_node = $frm->getFirstPostNode($thread->getId());
1640 if (isset($first_node[
'pos_pk']) && (
int) $first_node[
'pos_pk']) {
1641 $frm->deletePost((
int) $first_node[
'pos_pk']);
1642 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt($success_message),
true);
1645 $this->
ctrl->redirect($this,
'showThreads');
1648 public function confirmDeleteThreads():
void 1651 if ($thread_ids === []) {
1652 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'));
1653 $this->
ctrl->redirect($this,
'showThreads');
1656 if (!$this->is_moderator) {
1657 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1660 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1661 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1666 array_walk($thread_ids,
function (
int $threadId) use (&$threads):
void {
1670 $threads[] = $thread;
1675 $c_gui->setFormAction($this->
ctrl->getFormAction($this,
'performDeleteThreads'));
1676 $c_gui->setHeaderText($this->
lng->txt(
'frm_sure_delete_threads'));
1677 $c_gui->setCancel($this->
lng->txt(
'cancel'),
'showThreads');
1678 $c_gui->setConfirm($this->
lng->txt(
'confirm'),
'performDeleteThreads');
1680 foreach ($threads as $thread) {
1681 $c_gui->addItem(
'thread_ids[]', (
string) $thread->getId(), $thread->getSubject());
1684 $this->confirmation_gui_html = $c_gui->getHTML();
1687 $this->tpl->setContent($c_gui->getHTML());
1692 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1693 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1696 $draftIds = array_filter((array) ($this->httpRequest->getParsedBody()[
'draft_ids'] ?? []));
1697 if ($draftIds === []) {
1698 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'));
1704 $confirmation->setFormAction($this->
ctrl->getFormAction($this,
'deleteThreadDrafts'));
1705 $confirmation->setHeaderText($this->
lng->txt(
'sure_delete_drafts'));
1706 $confirmation->setCancel($this->
lng->txt(
'cancel'),
'showThreads');
1707 $confirmation->setConfirm($this->
lng->txt(
'confirm'),
'deleteThreadDrafts');
1709 foreach ($draftIds as $draftId) {
1710 if (array_key_exists($draftId, $instances)) {
1711 $confirmation->addItem(
'draft_ids[]', (
string) $draftId, $instances[$draftId]->getPostSubject());
1715 $this->tpl->setContent($confirmation->getHTML());
1718 public function prepareThreadScreen(
ilObjForum $a_forum_obj):
void 1720 $this->
ilHelp->setScreenIdComponent(
"frm");
1722 $this->tpl->loadStandardTemplate();
1727 $this->tabs_gui->setBackTarget(
1728 $this->
lng->txt(
'frm_all_threads'),
1729 $this->
ctrl->getLinkTarget(
1736 $frm = $a_forum_obj->Forum;
1737 $frm->setForumId($a_forum_obj->
getId());
1742 if (!$this->is_moderator) {
1743 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1746 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1747 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1752 $this->objCurrentPost->activatePost();
1753 $GLOBALS[
'ilAppEventHandler']->raise(
1757 'object' => $this->
object,
1758 'ref_id' => $this->
object->getRefId(),
1762 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_post_was_activated'),
true);
1770 !$this->
user->isAnonymous() &&
1771 !$this->objCurrentTopic->isClosed() && (
1772 $this->is_moderator ||
1773 ($this->objCurrentPost->isOwner($this->
user->getId()) && !$this->objCurrentPost->hasReplies())
1779 $forumObj = $oForumObjects[
'forumObj'];
1782 $frm->setForumId($forumObj->getId());
1783 $frm->setForumRefId($forumObj->getRefId());
1784 $dead_thr = $frm->deletePost($this->objCurrentPost->getId());
1787 if ($dead_thr === $this->objCurrentTopic->getId()) {
1788 $frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$forumObj->getId()]);
1789 $topicData = $frm->getOneTopic();
1790 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_post_deleted'),
true);
1791 if ($topicData->getTopNumThreads() > 0) {
1792 $this->
ctrl->redirect($this,
'showThreads');
1794 $this->
ctrl->redirect($this,
'createThread');
1797 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_post_deleted'),
true);
1798 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
1799 $this->
ctrl->redirect($this,
'viewThread');
1802 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1823 foreach ($this->modalActionsContainer as $modal) {
1824 $modalString .= $this->uiRenderer->render($modal);
1827 return $modalString;
1833 if ($this->is_moderator && !$this->objCurrentTopic->isClosed()) {
1834 if ($this->
http->wrapper()->post()->has(
'formData')) {
1835 $formData = $this->
http->wrapper()->post()->retrieve(
1842 if (
$message ===
'' && $this->
http->wrapper()->post()->has(
'cens_message')) {
1843 $cens_message = $this->
http->wrapper()->post()->retrieve(
1845 $this->
refinery->kindlyTo()->string()
1852 $frm = $oForumObjects[
'frm'];
1855 $frm->postCensorship($this->
object,
$message, $this->objCurrentPost->getId());
1856 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'frm_censorship_revoked'));
1858 $frm->postCensorship($this->
object,
$message, $this->objCurrentPost->getId(), 1);
1859 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'frm_censorship_applied'));
1866 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1871 if (!$this->is_moderator) {
1872 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1875 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1876 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1886 $this->display_confirm_post_activation = $status;
1896 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1897 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1902 if ($this->objCurrentTopic->isNotificationEnabled($this->user->getId())) {
1903 $this->objCurrentTopic->disableNotification($this->
user->getId());
1904 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_notification_disabled'));
1906 $this->objCurrentTopic->enableNotification($this->
user->getId());
1907 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_notification_enabled'));
1915 if (!$this->is_moderator) {
1916 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1919 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
1920 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1925 if ($this->objCurrentTopic->isSticky()) {
1926 $this->objCurrentTopic->unmakeSticky();
1928 $this->objCurrentTopic->makeSticky();
1937 if ($this->
http->wrapper()->post()->has(
'draft_id')) {
1938 $draft_id = $this->
http->wrapper()->post()->retrieve(
1944 $this->requestAction =
'';
1945 if ($draft_id > 0) {
1947 $draft->deleteDraftsByDraftIds([$draft_id]);
1957 $this->requestAction =
'';
1960 $history_obj->getFirstAutosaveByDraftId($draft_id);
1962 $draft->setPostSubject($history_obj->getPostSubject());
1963 $draft->setPostMessage($history_obj->getPostMessage());
1966 $history_obj->getPostMessage(),
1968 $history_obj->getHistoryId(),
1970 $draft->getDraftId()
1973 $draft->updateDraft();
1975 $history_obj->deleteHistoryByDraftIds([$draft->getDraftId()]);
1977 $this->
ctrl->clearParameters($this);
1983 $form_tpl =
new ilTemplate(
'tpl.frm_activation_post_form.html',
true,
true,
'Modules/Forum');
1984 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
1985 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
1986 $this->
ctrl->setParameter(
1991 $form_tpl->setVariable(
'FORM_ACTION', $this->
ctrl->getFormAction($this,
'performPostActivation'));
1992 $form_tpl->setVariable(
'SPACER',
'<hr noshade="noshade" width="100%" size="1" align="center" />');
1993 $form_tpl->setVariable(
'ANCHOR', $this->objCurrentPost->getId());
1994 $form_tpl->setVariable(
'TXT_ACT', $this->
lng->txt(
'activate_post_txt'));
1995 $form_tpl->setVariable(
'CONFIRM_BUTTON', $this->
lng->txt(
'activate_only_current'));
1996 $form_tpl->setVariable(
'CMD_CONFIRM',
'performPostActivation');
1997 $form_tpl->setVariable(
'CANCEL_BUTTON', $this->
lng->txt(
'cancel'));
1998 $form_tpl->setVariable(
'CMD_CANCEL',
'viewThread');
1999 $this->
ctrl->clearParameters($this);
2001 return $form_tpl->get();
2004 public function getCensorshipFormHTML():
string 2007 $frm = $this->
object->Forum;
2008 $form_tpl =
new ilTemplate(
'tpl.frm_censorship_post_form.html',
true,
true,
'Modules/Forum');
2010 $form_tpl->setVariable(
'ANCHOR', $this->objCurrentPost->getId());
2011 $form_tpl->setVariable(
'SPACER',
'<hr noshade="noshade" width="100%" size="1" align="center" />');
2012 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
2013 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
2014 $this->
ctrl->setParameter(
2019 $form_tpl->setVariable(
'FORM_ACTION', $this->
ctrl->getFormAction($this,
'viewThread'));
2020 $this->
ctrl->clearParameters($this);
2021 $form_tpl->setVariable(
'TXT_CENS_MESSAGE', $this->
lng->txt(
'forums_the_post'));
2022 $form_tpl->setVariable(
'TXT_CENS_COMMENT', $this->
lng->txt(
'forums_censor_comment') .
':');
2023 $form_tpl->setVariable(
'CENS_MESSAGE', $frm->prepareText((
string) $this->objCurrentPost->getCensorshipComment(), 2));
2025 if ($this->objCurrentPost->isCensored()) {
2026 $form_tpl->setVariable(
'TXT_CENS', $this->
lng->txt(
'forums_info_censor2_post'));
2027 $form_tpl->setVariable(
'YES_BUTTON', $this->
lng->txt(
'confirm'));
2028 $form_tpl->setVariable(
'NO_BUTTON', $this->
lng->txt(
'cancel'));
2029 $form_tpl->setVariable(
'CMD_REVOKE_CENSORSHIP',
'revokeCensorship');
2030 $form_tpl->setVariable(
'CMD_CANCEL_REVOKE_CENSORSHIP',
'viewThread');
2032 $form_tpl->setVariable(
'TXT_CENS', $this->
lng->txt(
'forums_info_censor_post'));
2033 $form_tpl->setVariable(
'CANCEL_BUTTON', $this->
lng->txt(
'cancel'));
2034 $form_tpl->setVariable(
'CONFIRM_BUTTON', $this->
lng->txt(
'confirm'));
2035 $form_tpl->setVariable(
'CMD_ADD_CENSORSHIP',
'addCensorship');
2036 $form_tpl->setVariable(
'CMD_CANCEL_ADD_CENSORSHIP',
'viewThread');
2039 return $form_tpl->get();
2044 $isReply = in_array($this->requestAction, [
'showreply',
'ready_showreply']);
2045 $isDraft = in_array($this->requestAction, [
'publishDraft',
'editdraft']);
2051 $frm = $oForumObjects[
'frm'];
2052 $oFDForum = $oForumObjects[
'file_obj'];
2055 $this->replyEditForm->setId(
'id_showreply');
2056 $this->replyEditForm->setTableWidth(
'100%');
2057 $cancel_cmd =
'cancelPost';
2058 if (in_array($this->requestAction, [
'showreply',
'ready_showreply'])) {
2059 $this->
ctrl->setParameter($this,
'action',
'ready_showreply');
2060 } elseif (in_array($this->requestAction, [
'showdraft',
'editdraft'])) {
2061 $this->
ctrl->setParameter($this,
'action', $this->requestAction);
2062 $this->
ctrl->setParameter($this,
'draft_id', $draft_id);
2064 $this->
ctrl->setParameter($this,
'action',
'ready_showedit');
2067 $this->
ctrl->setParameter($this,
'page', (
int) ($this->httpRequest->getQueryParams()[
'page'] ?? 0));
2068 $this->
ctrl->setParameter(
2073 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
2074 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
2076 $this->replyEditForm->setFormAction(
2077 $this->
ctrl->getFormAction($this,
'saveTopLevelPost',
'frm_page_bottom')
2079 } elseif (in_array($this->requestAction, [
'publishDraft',
'editdraft'])) {
2080 $this->replyEditForm->setFormAction(
2081 $this->
ctrl->getFormAction($this,
'publishDraft', (
string) $this->objCurrentPost->getId())
2084 $this->replyEditForm->setFormAction(
2085 $this->
ctrl->getFormAction($this,
'savePost', (
string) $this->objCurrentPost->getId())
2088 $this->
ctrl->clearParameters($this);
2091 $this->replyEditForm->setTitle($this->
lng->txt(
'forums_your_reply'));
2092 } elseif ($isDraft) {
2093 $this->replyEditForm->setTitle($this->
lng->txt(
'forums_edit_draft'));
2095 $this->replyEditForm->setTitle($this->
lng->txt(
'forums_edit_post'));
2100 in_array($this->requestAction, [
'showreply',
'ready_showreply',
'editdraft'])
2102 $oAnonymousNameGUI =
new ilTextInputGUI($this->
lng->txt(
'forums_your_name'),
'alias');
2103 $oAnonymousNameGUI->setMaxLength(64);
2104 $oAnonymousNameGUI->setInfo(sprintf($this->
lng->txt(
'forums_use_alias'), $this->
lng->txt(
'forums_anonymous')));
2106 $this->replyEditForm->addItem($oAnonymousNameGUI);
2109 $oSubjectGUI =
new ilTextInputGUI($this->
lng->txt(
'forums_subject'),
'subject');
2110 $oSubjectGUI->setMaxLength(255);
2111 $oSubjectGUI->setRequired(
true);
2113 if ($this->objProperties->getSubjectSetting() ===
'empty_subject') {
2114 $oSubjectGUI->setInfo($this->
lng->txt(
'enter_new_subject'));
2117 $this->replyEditForm->addItem($oSubjectGUI);
2120 $isReply ? $this->
lng->txt(
'forums_your_reply') : $this->
lng->txt(
'forums_edit_post'),
2124 $oPostGUI->setRows(15);
2125 $oPostGUI->setUseRte(
true);
2126 $oPostGUI->addPlugin(
'latex');
2127 $oPostGUI->addButton(
'latex');
2128 $oPostGUI->addButton(
'pastelatex');
2132 ($isReply && $this->objCurrentPost->getDepth() >= 2) ||
2133 (!$isDraft && !$isReply && $this->objCurrentPost->getDepth() > 2) ||
2134 ($isDraft && $this->objCurrentPost->getDepth() >= 2)
2137 if ($quotingAllowed) {
2138 $oPostGUI->addPlugin(
'ilfrmquote');
2139 $oPostGUI->addButton(
'ilFrmQuoteAjaxCall');
2142 $oPostGUI->removePlugin(
'advlink');
2143 $oPostGUI->setRTERootBlockElement(
'');
2144 $oPostGUI->usePurifier(
true);
2145 $oPostGUI->disableButtons([
2162 if (in_array($this->requestAction, [
'showreply',
'ready_showreply',
'showdraft',
'editdraft'])) {
2163 $oPostGUI->setRTESupport(
2164 $this->
user->getId(),
2167 'tpl.tinymce_frm_post.js',
2172 $oPostGUI->setRTESupport(
2173 $this->objCurrentPost->getId(),
2176 'tpl.tinymce_frm_post.js',
2184 $this->replyEditForm->addItem($oPostGUI);
2187 if (!$this->
user->isAnonymous() &&
2188 !$this->objProperties->isAnonymized() &&
2189 $this->
rbac->system()->checkAccess(
'internal_mail', $umail->getMailObjectReferenceId()) &&
2190 !$frm->isThreadNotificationEnabled($this->user->getId(), $this->objCurrentPost->getThreadId())) {
2192 $oNotificationGUI->
setInfo($this->
lng->txt(
'forum_notify_me'));
2193 $this->replyEditForm->addItem($oNotificationGUI);
2196 if ($this->objProperties->isFileUploadAllowed()) {
2199 $this->replyEditForm->addItem($oFileUploadGUI);
2202 $attachments_of_node = $oFDForum->getFilesOfPost();
2203 if (count($attachments_of_node) && in_array($this->requestAction, [
'showedit',
'ready_showedit'])) {
2205 foreach ($oFDForum->getFilesOfPost() as $file) {
2208 $this->replyEditForm->addItem($oExistingAttachmentsGUI);
2212 if (in_array($this->requestAction, [
'showdraft',
'editdraft'])) {
2214 $draftInfoGUI->setValue(sprintf(
2215 $this->
lng->txt(
'autosave_draft_info'),
2218 $this->replyEditForm->addItem($draftInfoGUI);
2219 } elseif (!in_array($this->requestAction, [
'showedit',
'ready_showedit'])) {
2221 $draftInfoGUI->setValue(sprintf(
2222 $this->
lng->txt(
'autosave_post_draft_info'),
2225 $this->replyEditForm->addItem($draftInfoGUI);
2229 $selected_draft_id = $draft_id;
2231 $this->
user->getId(),
2232 $this->objCurrentPost->getId(),
2235 if ($draftObj->getDraftId() > 0) {
2237 if (count($oFDForumDrafts->getFilesOfPost())) {
2239 $this->
lng->txt(
'forums_delete_file'),
2242 foreach ($oFDForumDrafts->getFilesOfPost() as $file) {
2245 $this->replyEditForm->addItem($oExistingAttachmentsGUI);
2250 $this->replyEditForm->addCommandButton(
'saveTopLevelPost', $this->
lng->txt(
'create'));
2252 $this->replyEditForm->addCommandButton(
'publishDraft', $this->
lng->txt(
'publish'));
2254 $this->replyEditForm->addCommandButton(
'savePost', $this->
lng->txt(
'save'));
2259 $hidden_draft_id->setValue((
string) $auto_save_draft_id);
2260 $this->replyEditForm->addItem($hidden_draft_id);
2262 if (in_array($this->requestAction, [
'showreply',
'ready_showreply',
'editdraft'])) {
2265 if ($this->
http->wrapper()->post()->has(
'show_rte')) {
2266 $show_rte = $this->
http->wrapper()->post()->retrieve(
2277 if ($quotingAllowed) {
2278 $this->replyEditForm->addCommandButton(
'quotePost', $this->
lng->txt(
'forum_add_quote'));
2283 !$this->
user->isAnonymous() &&
2284 in_array($this->requestAction, [
'editdraft',
'showreply',
'ready_showreply']) &&
2291 if ($this->requestAction ===
'editdraft') {
2292 $this->replyEditForm->addCommandButton(
'updateDraft', $this->
lng->txt(
'save_message'));
2294 $this->replyEditForm->addCommandButton(
'saveTopLevelDraft', $this->
lng->txt(
'save_message'));
2296 $this->replyEditForm->addCommandButton(
'saveAsDraft', $this->
lng->txt(
'save_message'));
2299 $cancel_cmd =
'cancelDraft';
2302 $this->replyEditForm->addCommandButton($cancel_cmd, $this->
lng->txt(
'cancel'));
2307 if (null === $this->replyEditForm) {
2319 if ($draft_id > 0 && !$this->
user->isAnonymous()
2322 $this->
user->getId(),
2323 $this->objCurrentPost->getId(),
2329 $this->
ctrl->setParameter($this,
'action',
'editdraft');
2330 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
2331 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
2332 $this->
ctrl->setParameter($this,
'draft_id', $draft_obj->getDraftId());
2333 $this->
ctrl->setParameter($this,
'page', 0);
2334 $this->
ctrl->setParameter(
2339 $this->
ctrl->redirect($this,
'editDraft');
2353 if ($draft_id > 0) {
2360 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
2361 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2364 if (!$this->
access->checkAccess(
'add_reply',
'', $this->object->getRefId())) {
2365 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2368 if (!$this->objCurrentTopic->getId()) {
2369 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_deleted'),
true);
2370 $this->
ctrl->redirect($this);
2373 if ($this->objCurrentTopic->isClosed()) {
2374 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_closed'),
true);
2375 $this->
ctrl->redirect($this);
2378 if (!$this->objCurrentPost->getId()) {
2379 $this->requestAction =
'';
2380 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_parent_deleted'));
2385 $post_id = $this->objCurrentPost->getId();
2390 if ($use_replyform) {
2392 if (!$oReplyEditForm->checkInput()) {
2393 $oReplyEditForm->setValuesByPost();
2397 $post_subject = $oReplyEditForm->getInput(
'subject');
2398 $post_message = $oReplyEditForm->getInput(
'message');
2401 $post_subject = $draft_obj->getPostSubject();
2402 $post_message = $draft_obj->getPostMessage();
2406 if ($draft_obj->getDraftId() > 0) {
2408 $frm = $oForumObjects[
'frm'];
2409 $frm->setMDB2WhereCondition(
' top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
2413 $send_activation_mail =
false;
2415 if ($this->objProperties->isPostActivationEnabled()) {
2416 if (!$this->is_moderator) {
2418 $send_activation_mail =
true;
2419 } elseif ($this->objCurrentPost->isAnyParentDeactivated()) {
2424 $newPost = $frm->generatePost(
2425 $draft_obj->getForumId(),
2426 $draft_obj->getThreadId(),
2427 $this->
user->getId(),
2428 $draft_obj->getPostDisplayUserId(),
2430 $draft_obj->getPostId(),
2431 $draft_obj->isNotificationEnabled(),
2433 $draft_obj->getPostUserAlias(),
2436 $send_activation_mail
2439 $this->
object->markPostRead(
2440 $this->
user->getId(),
2441 $this->objCurrentTopic->getId(),
2442 $this->objCurrentPost->getId()
2447 foreach ($uploadedObjects as $mob) {
2453 if ($this->objProperties->isFileUploadAllowed()) {
2454 $file = $_FILES[
'userfile'] ?? [];
2455 if (is_array($file) && !empty($file)) {
2464 $oFDForumDrafts->moveFilesOfDraft($oFDForum->getForumPath(), $newPost);
2465 $oFDForumDrafts->
delete();
2469 $GLOBALS[
'ilAppEventHandler']->raise(
2473 'draftObj' => $draft_obj,
2474 'obj_id' => $this->
object->getId(),
2475 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed()
2479 $draft_obj->deleteDraft();
2481 $GLOBALS[
'ilAppEventHandler']->raise(
2485 'object' => $this->
object,
2486 'ref_id' => $this->
object->getRefId(),
2488 'notify_moderators' => $send_activation_mail
2493 if (!$this->is_moderator && !$status) {
2494 $message .= $this->
lng->txt(
'forums_post_needs_to_be_activated');
2496 $message .= $this->
lng->txt(
'forums_post_new_entry');
2502 if (is_array($frm_session_values)) {
2503 $frm_session_values[$thr_pk][
'openTreeNodes'][] = $this->objCurrentPost->getId();
2507 $this->
ctrl->clearParameters($this);
2508 $this->tpl->setOnScreenMessage(
'success',
$message,
true);
2509 $this->
ctrl->setParameter($this,
'pos_pk', $newPost);
2510 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
2512 $this->
ctrl->redirect($this,
'viewThread');
2518 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
2519 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2522 if (!$this->objCurrentTopic->getId()) {
2523 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_deleted'),
true);
2524 $this->
ctrl->redirect($this);
2527 if ($this->objCurrentTopic->isClosed()) {
2528 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_closed'),
true);
2529 $this->
ctrl->redirect($this);
2534 if ($this->
http->wrapper()->post()->has(
'del_file')) {
2535 $del_file = $this->
http->wrapper()->post()->retrieve(
2542 if ($oReplyEditForm->checkInput()) {
2543 if (!$this->objCurrentPost->getId()) {
2544 $this->requestAction =
'';
2545 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_parent_deleted'),
true);
2552 $forumObj = $oForumObjects[
'forumObj'];
2553 $frm = $oForumObjects[
'frm'];
2554 $frm->setMDB2WhereCondition(
' top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
2555 $topicData = $frm->getOneTopic();
2559 if ($this->
http->wrapper()->post()->has(
'draft_id')) {
2560 $post_draft_id = $this->
http->wrapper()->post()->retrieve(
2566 if ($this->requestAction ===
'ready_showreply') {
2567 if (!$this->
access->checkAccess(
'add_reply',
'',
$ref_id)) {
2568 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2573 $send_activation_mail =
false;
2575 if ($this->objProperties->isPostActivationEnabled()) {
2576 if (!$this->is_moderator) {
2578 $send_activation_mail =
true;
2579 } elseif ($this->objCurrentPost->isAnyParentDeactivated()) {
2585 if ((
string) $oReplyEditForm->getInput(
'alias') ===
'') {
2586 $user_alias = $this->
lng->txt(
'forums_anonymous');
2588 $user_alias = $oReplyEditForm->getInput(
'alias');
2590 $display_user_id = 0;
2592 $user_alias = $this->
user->getLogin();
2593 $display_user_id = $this->
user->getId();
2596 $newPost = $frm->generatePost(
2597 $topicData->getTopPk(),
2598 $this->objCurrentTopic->getId(),
2599 $this->
user->getId(),
2602 $this->objCurrentPost->getId(),
2603 $oReplyEditForm->getInput(
'notify') && !$this->
user->isAnonymous(),
2608 $send_activation_mail
2614 $draft_id = $post_draft_id;
2616 $draft_obj =
new ilForumPostDraft($this->
user->getId(), $this->objCurrentPost->getId(), $draft_id);
2623 $this->
object->markPostRead(
2624 $this->
user->getId(),
2625 $this->objCurrentTopic->getId(),
2626 $this->objCurrentPost->getId()
2631 $oReplyEditForm->getInput(
'message'),
2633 $this->
user->getId(),
2638 if ($this->objProperties->isFileUploadAllowed()) {
2640 $file = $_FILES[
'userfile'];
2641 if (is_array($file) && !empty($file)) {
2646 $GLOBALS[
'ilAppEventHandler']->raise(
2650 'object' => $this->
object,
2651 'ref_id' => $this->
object->getRefId(),
2653 'notify_moderators' => $send_activation_mail
2658 if (!$this->is_moderator && !$status) {
2659 $message .= $this->
lng->txt(
'forums_post_needs_to_be_activated');
2661 $message .= $this->
lng->txt(
'forums_post_new_entry');
2664 $this->tpl->setOnScreenMessage(
'success',
$message,
true);
2665 $this->
ctrl->clearParameters($this);
2666 $this->
ctrl->setParameter($this,
'post_created_below', $this->objCurrentPost->getId());
2667 $this->
ctrl->setParameter($this,
'pos_pk', $newPost);
2668 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
2670 if ((!$this->is_moderator &&
2671 !$this->objCurrentPost->isOwner($this->user->getId())) || $this->objCurrentPost->isCensored() ||
2672 $this->
user->isAnonymous()) {
2673 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2680 foreach ($oldMediaObjects as $oldMob) {
2682 foreach ($curMediaObjects as $curMob) {
2683 if ($oldMob === $curMob) {
2696 $old_status_was_active = $this->objCurrentPost->isActivated();
2700 $send_activation_mail =
false;
2702 if ($this->objProperties->isPostActivationEnabled()) {
2703 if (!$this->is_moderator) {
2705 $send_activation_mail =
true;
2706 } elseif ($this->objCurrentPost->isAnyParentDeactivated()) {
2710 $this->objCurrentPost->setStatus($status);
2712 $this->objCurrentPost->setSubject($this->
handleFormInput($oReplyEditForm->getInput(
'subject'),
false));
2714 $oReplyEditForm->getInput(
'message')
2716 $this->objCurrentPost->setNotification($oReplyEditForm->getInput(
'notify') && !$this->
user->isAnonymous());
2717 $this->objCurrentPost->setChangeDate(date(
'Y-m-d H:i:s'));
2718 $this->objCurrentPost->setUpdateUserId($this->
user->getId());
2720 if ($this->objCurrentPost->update()) {
2721 $this->objCurrentPost->reload();
2728 $this->objCurrentPost->getId(),
2733 $news_item->setTitle($this->objCurrentPost->getSubject());
2734 $news_item->setContent(
2736 $this->objCurrentPost->getMessage()
2740 if ($this->objCurrentPost->getMessage() !== strip_tags($this->objCurrentPost->getMessage())) {
2741 $news_item->setContentHtml(
true);
2743 $news_item->setContentHtml(
false);
2745 $news_item->update();
2748 $oFDForum = $oForumObjects[
'file_obj'];
2750 $file2delete = $oReplyEditForm->getInput(
'del_file');
2751 if (is_array($file2delete) && count($file2delete)) {
2752 $oFDForum->unlinkFilesByMD5Filenames($file2delete);
2755 if ($this->objProperties->isFileUploadAllowed()) {
2756 $file = $_FILES[
'userfile'];
2757 if (is_array($file) && !empty($file)) {
2758 $oFDForum->storeUploadedFile($file);
2762 $GLOBALS[
'ilAppEventHandler']->raise(
2766 'ref_id' => $this->
object->getRefId(),
2768 'notify_moderators' => $send_activation_mail,
2769 'old_status_was_active' => $old_status_was_active
2773 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'forums_post_modified'),
true);
2776 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
2777 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
2778 $this->
ctrl->setParameter($this,
'viewmode', $this->selectedSorting);
2780 $this->
ctrl->redirect($this,
'viewThread');
2782 $this->requestAction = substr($this->requestAction, 6);
2789 if (null === $a_flag) {
2799 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
2800 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2804 if ($this->
http->wrapper()->post()->has(
'del_file')) {
2805 $del_file = $this->
http->wrapper()->post()->retrieve(
2811 if ($this->objCurrentTopic->isClosed()) {
2812 $this->requestAction =
'';
2819 $oReplyEditForm->getItemByPostVar(
'subject')->setRequired(
false);
2820 $oReplyEditForm->getItemByPostVar(
'message')->setRequired(
false);
2822 $oReplyEditForm->checkInput();
2824 $oReplyEditForm->getItemByPostVar(
'subject')->setRequired(
true);
2825 $oReplyEditForm->getItemByPostVar(
'message')->setRequired(
true);
2827 $this->requestAction =
'showreply';
2834 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
2835 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2841 $frm = $oForumObjects[
'frm'];
2844 $this->objCurrentPost->getPosAuthorId(),
2845 $this->objCurrentPost->getDisplayUserId(),
2846 (string) $this->objCurrentPost->getUserAlias(),
2847 (string) $this->objCurrentPost->getImportName()
2851 $this->objCurrentPost->getMessage(),
2853 $authorinfo->getAuthorName()
2856 $this->
http->saveResponse($this->
http->response()->withBody(
2859 $this->
http->sendResponse();
2860 $this->
http->close();
2868 if (null === $this->forumObjects) {
2870 $file_obj =
new ilFileDataForum($forumObj->getId(), $this->objCurrentPost->getId());
2871 $frm = $forumObj->Forum;
2872 $frm->setForumId($forumObj->getId());
2873 $frm->setForumRefId($forumObj->getRefId());
2875 $this->forumObjects[
'forumObj'] = $forumObj;
2876 $this->forumObjects[
'frm'] = $frm;
2877 $this->forumObjects[
'file_obj'] = $file_obj;
2885 $this->selectedSorting = $this->objProperties->getDefaultView();
2896 isset($this->httpRequest->getQueryParams()[
'viewmode']) &&
2899 $this->selectedSorting = (
int) $this->httpRequest->getQueryParams()[
'viewmode'];
2902 if (!in_array($this->selectedSorting, [
2907 $this->selectedSorting = $this->objProperties->getDefaultView();
2915 $this->selected_post_storage->set($this->objCurrentTopic->getId(), 0);
2916 $this->
ctrl->redirect($this,
'viewThread');
2925 $bottom_toolbar_split_button_items = [];
2928 $thread_control_session_values =
ilSession::get(
'thread_control');
2929 if (is_array($thread_control_session_values)) {
2930 if (!isset($thread_control_session_values[
'old'])) {
2931 $thread_control_session_values[
'old'] = $thr_pk;
2932 $thread_control_session_values[
'new'] = $thr_pk;
2933 ilSession::set(
'thread_control', $thread_control_session_values);
2934 } elseif (isset($thread_control_session_values[
'old']) && $thr_pk !== $thread_control_session_values[
'old']) {
2935 $thread_control_session_values[
'new'] = $thr_pk;
2936 ilSession::set(
'thread_control', $thread_control_session_values);
2940 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
2941 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
2945 $forumObj = $oForumObjects[
'forumObj'];
2946 $frm = $oForumObjects[
'frm'];
2947 $file_obj = $oForumObjects[
'file_obj'];
2949 $selected_draft_id = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
2950 if (isset($this->httpRequest->getQueryParams()[
'file'])) {
2951 $file_obj_for_delivery = $file_obj;
2958 if ($this->objCurrentTopic->getId() === 0) {
2959 $this->
ctrl->redirect($this,
'showThreads');
2963 if (isset($this->httpRequest->getQueryParams()[
'page'])) {
2964 $pageIndex = max((
int) $this->httpRequest->getQueryParams()[
'page'], $pageIndex);
2967 if ($this->selected_post_storage->get($this->objCurrentTopic->getId()) > 0) {
2969 $this->selected_post_storage->get($this->objCurrentTopic->getId()),
2970 $this->is_moderator,
2974 $firstNodeInThread = $this->objCurrentTopic->getPostRootNode();
2996 $append =
'_' . $this->objCurrentTopic->getId() .
2997 ($this->objCurrentPost->getId() ?
'_' . $this->objCurrentPost->getId() :
'');
2998 $this->tpl->setLoginTargetPar(
'frm_' .
$ref_id . $append);
3001 if (!in_array($this->requestAction, [
'showreply',
'showedit'])) {
3004 foreach (
$mobs as $mob) {
3015 if (!$this->
getCreationMode() && $this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3017 $this->
object->getRefId(),
3023 $forumObj->updateLastAccess($this->
user->getId(), $this->objCurrentTopic->getId());
3025 $this->prepareThreadScreen($forumObj);
3028 'tpl.forums_threads_view.html',
3034 if (isset($this->httpRequest->getQueryParams()[
'anchor'])) {
3035 $threadContentTemplate->setVariable(
'JUMP2ANCHOR_ID', (
int) $this->httpRequest->getQueryParams()[
'anchor']);
3040 $orderField =
'frm_posts_tree.rgt';
3041 $this->objCurrentTopic->setOrderDirection(
'DESC');
3042 $threadContentTemplate->setVariable(
'LIST_TYPE', $this->viewModeOptions[$this->selectedSorting]);
3044 $orderField =
'frm_posts.pos_date';
3045 $this->objCurrentTopic->setOrderDirection(
3048 $threadContentTemplate->setVariable(
'LIST_TYPE', $this->sortationOptions[$this->selectedSorting]);
3051 $numberOfPostings = 0;
3053 $frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
3056 $this->
object->getType(),
3057 $this->
object->getRefId(),
3058 $this->
object->getId(),
3059 $this->
user->getId()
3062 if ($firstNodeInThread) {
3063 $this->objCurrentTopic->updateVisits();
3065 $this->tpl->setTitle($this->
lng->txt(
'forums_thread') .
" \"" . $this->objCurrentTopic->getSubject() .
"\"");
3067 $this->
locator->addRepositoryItems();
3068 $this->
locator->addItem($this->
object->getTitle(), $this->
ctrl->getLinkTarget($this,
""),
"_top");
3069 $this->tpl->setLocator();
3072 !$this->
user->isAnonymous() &&
3073 $forumObj->getCountUnread($this->
user->getId(), $this->objCurrentTopic->getId(),
true)
3075 $this->
ctrl->setParameter($this,
'mark_read',
'1');
3076 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
3079 $mark_thr_read_button->setCaption(
'forums_mark_read');
3080 $mark_thr_read_button->setUrl($this->
ctrl->getLinkTarget($this,
'viewThread'));
3082 $bottom_toolbar_split_button_items[] = $mark_thr_read_button;
3084 $this->
ctrl->clearParameters($this);
3087 $this->
ctrl->setParameterByClass(ilForumExportGUI::class,
'print_thread', $this->objCurrentTopic->getId());
3088 $this->
ctrl->setParameterByClass(
3089 ilForumExportGUI::class,
3091 $this->objCurrentTopic->getForumId()
3095 $print_thr_button->setCaption(
'forums_print_thread');
3096 $print_thr_button->setUrl($this->
ctrl->getLinkTargetByClass(ilForumExportGUI::class,
'printThread'));
3098 $bottom_toolbar_split_button_items[] = $print_thr_button;
3100 $this->
ctrl->clearParametersByClass(ilForumExportGUI::class);
3104 if (isset($this->httpRequest->getQueryParams()[
'mark_read'])) {
3105 $forumObj->markThreadRead($this->
user->getId(), $this->objCurrentTopic->getId());
3106 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_thread_marked'),
true);
3109 $this->objCurrentTopic->setOrderField($orderField);
3110 $subtree_nodes = $this->objCurrentTopic->getPostTree($firstNodeInThread);
3115 !$this->objCurrentTopic->isClosed() &&
3119 $reply_button->setPrimary(
true);
3120 $reply_button->setCaption(
'add_new_answer');
3121 $this->
ctrl->setParameter($this,
'action',
'showreply');
3122 $this->
ctrl->setParameter($this,
'pos_pk', $firstNodeInThread->getId());
3123 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
3124 $this->
ctrl->setParameter(
3127 (
int) ($this->httpRequest->getQueryParams()[
'page'] ?? 0)
3129 $this->
ctrl->setParameter(
3135 $reply_button->setUrl($this->
ctrl->getLinkTarget($this,
'createTopLevelPost',
'frm_page_bottom'));
3137 $this->
ctrl->clearParameters($this);
3138 array_unshift($bottom_toolbar_split_button_items, $reply_button);
3142 $numberOfPostings = count($subtree_nodes);
3143 if ($numberOfPostings === 0 && $firstNodeInThread->getId() === 0) {
3144 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_no_posts_available'));
3147 $pageSize = $frm->getPageHits();
3150 if ($numberOfPostings > $pageSize) {
3151 $this->
ctrl->setParameter($this,
'ref_id', $this->
object->getRefId());
3152 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
3153 $this->
ctrl->setParameter(
3158 $paginationUrl = $this->
ctrl->getLinkTarget($this,
'viewThread',
'');
3159 $this->
ctrl->clearParameters($this);
3161 $pagination = $this->uiFactory->viewControl()
3163 ->withTargetURL($paginationUrl,
'page')
3164 ->withTotalEntries($numberOfPostings)
3165 ->withPageSize($pageSize)
3166 ->withMaxPaginationButtons(10)
3167 ->withCurrentPage($pageIndex);
3169 $threadContentTemplate->setVariable(
'THREAD_MENU', $this->uiRenderer->render(
3172 $threadContentTemplate->setVariable(
'THREAD_MENU_BOTTOM', $this->uiRenderer->render(
3178 $draftsObjects = [];
3179 if ($doRenderDrafts) {
3181 $this->
user->getId(),
3182 $this->objCurrentTopic->getId(),
3187 $pagedPostings = array_slice($subtree_nodes, $pageIndex * $pageSize, $pageSize);
3192 $doRenderDrafts && 0 === $pageIndex &&
3195 foreach ($draftsObjects as $draft) {
3196 $referencePosting = array_values(array_filter(
3199 return $draft->getPostId() === $post->
getId();
3201 ))[0] ?? $firstNodeInThread;
3204 $threadContentTemplate,
3205 $this->requestAction,
3212 foreach ($pagedPostings as $node) {
3213 $this->
ctrl->clearParameters($this);
3216 if ($this->is_moderator || $node->isActivated() || $node->isOwner($this->
user->getId())) {
3217 if (!$this->objCurrentTopic->isClosed() && in_array($this->requestAction, [
3221 $this->renderPostingForm($threadContentTemplate, $frm, $node, $this->requestAction);
3222 } elseif ($this->requestAction ===
'censor' && !$this->objCurrentTopic->isClosed()) {
3223 if ($this->is_moderator) {
3224 $threadContentTemplate->setVariable(
'FORM', $this->getCensorshipFormHTML());
3227 if ($this->is_moderator) {
3234 $this->
renderPostContent($threadContentTemplate, $node, $this->requestAction, $pageIndex, $postIndex);
3237 $threadContentTemplate,
3238 $this->requestAction,
3240 $draftsObjects[$node->getId()] ?? []
3249 $doRenderDrafts && $pageIndex === max(0, (
int) (ceil($numberOfPostings / $pageSize) - 1))
3251 foreach ($draftsObjects as $draft) {
3252 $referencePosting = array_values(array_filter(
3255 return $draft->getPostId() === $post->
getId();
3257 ))[0] ?? $firstNodeInThread;
3260 $threadContentTemplate,
3261 $this->requestAction,
3269 $firstNodeInThread instanceof
ilForumPost && $doRenderDrafts &&
3273 $threadContentTemplate,
3274 $this->requestAction,
3276 $draftsObjects[$firstNodeInThread->getId()] ?? []
3282 !$this->objCurrentTopic->isClosed() &&
3283 in_array($this->
ctrl->getCmd(), [
'createTopLevelPost',
'saveTopLevelPost',
'saveTopLevelDraft'],
true) &&
3286 $this->objCurrentPost->setId($firstNodeInThread->getId());
3289 if (in_array($this->
ctrl->getCmd(), [
'saveTopLevelPost',
'saveTopLevelDraft'])) {
3290 $form->setValuesByPost();
3292 $this->
ctrl->setParameter($this,
'pos_pk', $firstNodeInThread->getId());
3293 $this->
ctrl->setParameter($this,
'thr_pk', $firstNodeInThread->getThreadId());
3294 $jsTpl =
new ilTemplate(
'tpl.forum_post_quoation_ajax_handler.js',
true,
true,
'Modules/Forum');
3295 $jsTpl->setVariable(
3296 'IL_FRM_QUOTE_CALLBACK_SRC',
3297 $this->
ctrl->getLinkTarget($this,
'getQuotationHTMLAsynch',
'',
true)
3299 $this->
ctrl->clearParameters($this);
3300 $this->tpl->addOnLoadCode($jsTpl->get());
3301 $threadContentTemplate->setVariable(
'BOTTOM_FORM', $form->getHTML());
3304 $threadContentTemplate->setCurrentBlock(
'posts_no');
3305 $threadContentTemplate->setVariable(
3306 'TXT_MSG_NO_POSTS_AVAILABLE',
3307 $this->
lng->txt(
'forums_posts_not_available')
3309 $threadContentTemplate->parseCurrentBlock();
3312 if ($bottom_toolbar_split_button_items) {
3315 foreach ($bottom_toolbar_split_button_items as $item) {
3317 $bottom_split_button->setDefaultButton($item);
3324 $bottom_toolbar->addStickyItem($bottom_split_button);
3325 $this->toolbar->addStickyItem($bottom_split_button);
3326 $bottom_toolbar->addSeparator();
3330 $to_top_button->setCaption(
'top_of_page');
3331 $to_top_button->setUrl(
'#frm_page_top');
3332 $bottom_toolbar->addButtonInstance($to_top_button);
3333 if ($numberOfPostings > 0) {
3334 $threadContentTemplate->setVariable(
'TOOLBAR_BOTTOM', $bottom_toolbar->getHTML());
3342 $this->tpl->setPermanentLink(
3343 $this->
object->getType(),
3344 $this->
object->getRefId(),
3345 '_' . $this->objCurrentTopic->getId(),
3349 $this->tpl->addOnLoadCode(
'$(".ilFrmPostContent img").each(function() { 3352 maxWidth: $elm.attr("width") + "px", 3353 maxHeight: $elm.attr("height") + "px" 3355 $elm.removeAttr("width"); 3356 $elm.removeAttr("height"); 3363 $this->tpl->setContent(($info ??
'') . $threadContentTemplate->get() . $this->
getModalActions());
3368 if ($currentViewMode === 3) {
3369 $currentViewMode = 2;
3371 $translationKeys = [];
3372 foreach ($this->viewModeOptions as $sortingConstantKey => $languageKey) {
3373 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
3374 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
3375 $this->
ctrl->setParameter($this,
'viewmode', $sortingConstantKey);
3377 $translationKeys[$this->
lng->txt($languageKey)] = $this->
ctrl->getLinkTarget(
3383 $this->
ctrl->clearParameters($this);
3390 $sortViewControl = $this->uiFactory
3392 ->mode($translationKeys, $this->
lng->txt($this->viewModeOptions[$currentViewMode]))
3393 ->withActive($this->
lng->txt($this->viewModeOptions[$currentViewMode]));
3394 $this->
toolbar->addComponent($sortViewControl);
3399 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
3400 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
3401 $target = $this->
ctrl->getLinkTarget(
3407 $translatedSortationOptions = array_map(
function ($value) {
3408 return $this->
lng->txt($value);
3411 $sortingDirectionViewControl = $this->uiFactory
3413 ->sortation($translatedSortationOptions)
3414 ->withLabel($this->
lng->txt($this->sortationOptions[$currentSorting]))
3415 ->withTargetURL($target,
'viewmode');
3416 $this->
toolbar->addComponent($sortingDirectionViewControl);
3422 $this->
lng->txt(
'post_reply'),
3423 $this->
lng->txt(
'post_reply_count')
3424 ))->build($this->objCurrentPost->getSubject());
3430 if ($this->
http->wrapper()->query()->has(
'user')) {
3431 $user_id = $this->
http->wrapper()->query()->retrieve(
3439 if ($this->
http->wrapper()->query()->has(
'backurl')) {
3440 $backurl = $this->
http->wrapper()->query()->retrieve(
3442 $this->
refinery->kindlyTo()->string()
3447 $add = $this->getUserProfileAdditional(
$ref_id, $user_id);
3448 $profile_gui->setAdditional($add);
3450 $this->tpl->setContent($this->
ctrl->getHTML($profile_gui));
3453 protected function getUserProfileAdditional(
int $a_forum_ref_id,
int $a_user_id): array
3455 if (!$this->
access->checkAccess(
'read',
'', $a_forum_ref_id)) {
3456 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3461 if ($ref_obj->getType() ===
'frm') {
3463 $frm = $forumObj->Forum;
3464 $frm->setForumId($forumObj->getId());
3465 $frm->setForumRefId($forumObj->getRefId());
3470 if ($this->
access->checkAccess(
'moderate_frm',
'', $a_forum_ref_id)) {
3471 $numPosts = $frm->countUserArticles($a_user_id);
3473 $numPosts = $frm->countActiveUserArticles($a_user_id);
3476 return [$this->
lng->txt(
'forums_posts') => $numPosts];
3481 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3482 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3488 $cmd = $this->
ctrl->getCmd();
3491 if ($thread_ids !== []) {
3492 if ($cmd ===
'move') {
3493 if ($this->is_moderator) {
3497 } elseif ($cmd ===
'enable_notifications' && (
int) $this->
settings->get(
'forum_notification',
'0') !== 0) {
3498 for (
$i = 0, $num_thread_ids = count($thread_ids);
$i < $num_thread_ids;
$i++) {
3501 $tmp_obj->enableNotification($this->
user->getId());
3504 $this->
ctrl->redirect($this,
'showThreads');
3505 } elseif ($cmd ===
'disable_notifications' && (
int) $this->
settings->get(
'forum_notification',
'0') !== 0) {
3506 for (
$i = 0, $num_thread_ids = count($thread_ids);
$i < $num_thread_ids;
$i++) {
3509 $tmp_obj->disableNotification($this->
user->getId());
3512 $this->
ctrl->redirect($this,
'showThreads');
3513 } elseif ($cmd ===
'close') {
3514 if ($this->is_moderator) {
3515 for (
$i = 0, $num_thread_ids = count($thread_ids);
$i < $num_thread_ids;
$i++) {
3521 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'selected_threads_closed'),
true);
3522 $this->
ctrl->redirect($this,
'showThreads');
3523 } elseif ($cmd ===
'reopen') {
3524 if ($this->is_moderator) {
3525 for (
$i = 0, $num_thread_ids = count($thread_ids);
$i < $num_thread_ids;
$i++) {
3532 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'selected_threads_reopened'),
true);
3533 $this->
ctrl->redirect($this,
'showThreads');
3534 } elseif ($cmd ===
'makesticky') {
3535 if ($this->is_moderator) {
3536 $message = $this->
lng->txt(
'sel_threads_make_sticky');
3538 for (
$i = 0, $num_thread_ids = count($thread_ids);
$i < $num_thread_ids;
$i++) {
3541 $makeSticky = $tmp_obj->makeSticky();
3544 $message = $this->
lng->txt(
'sel_threads_already_sticky');
3549 $this->tpl->setOnScreenMessage(
'info',
$message,
true);
3551 $this->
ctrl->redirect($this,
'showThreads');
3552 } elseif ($cmd ===
'unmakesticky') {
3553 if ($this->is_moderator) {
3554 $message = $this->
lng->txt(
'sel_threads_make_unsticky');
3555 for (
$i = 0, $num_thread_ids = count($thread_ids);
$i < $num_thread_ids;
$i++) {
3558 $unmakeSticky = $tmp_obj->unmakeSticky();
3559 if (!$unmakeSticky) {
3560 $message = $this->
lng->txt(
'sel_threads_already_unsticky');
3566 $this->tpl->setOnScreenMessage(
'info',
$message,
true);
3568 $this->
ctrl->redirect($this,
'showThreads');
3569 } elseif ($cmd ===
'editThread') {
3570 if ($this->is_moderator) {
3571 $count = count($thread_ids);
3573 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_max_one_thread'),
true);
3574 $this->
ctrl->redirect($this,
'showThreads');
3581 $this->
ctrl->redirect($this,
'showThreads');
3582 } elseif ($cmd ===
'html') {
3583 $this->
ctrl->setCmd(
'exportHTML');
3584 $this->
ctrl->setCmdClass(
'ilForumExportGUI');
3586 } elseif ($cmd ===
'confirmDeleteThreads') {
3587 $this->confirmDeleteThreads();
3588 } elseif ($cmd ===
'mergeThreads') {
3591 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'topics_please_select_one_action'),
true);
3592 $this->
ctrl->redirect($this,
'showThreads');
3595 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'),
true);
3596 $this->
ctrl->redirect($this,
'showThreads');
3602 if (!$this->is_moderator) {
3603 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3606 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3607 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3611 if ($this->
http->wrapper()->post()->has(
'frm_ref_id')) {
3612 $frm_ref_id = $this->
http->wrapper()->post()->retrieve(
3617 $this->error->raiseError(
'Please select a forum', $this->error->MESSAGE);
3621 if (!is_array($threads2move) || !count($threads2move)) {
3622 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'),
true);
3623 $this->
ctrl->redirect($this,
'showThreads');
3626 if (!$this->
access->checkAccess(
'read',
'', (
int) $frm_ref_id)) {
3627 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3631 array_walk($threads2move,
function (
int $threadId) use (&$threads) {
3635 $threads[] = $threadId;
3638 if (isset($frm_ref_id) && (
int) $frm_ref_id) {
3639 $errorMessages = $this->
object->Forum->moveThreads(
3642 $this->ilObjDataCache->lookupObjId((
int) $frm_ref_id)
3645 if ([] !== $errorMessages) {
3646 $this->tpl->setOnScreenMessage(
'failure', implode(
"<br><br>", $errorMessages),
true);
3647 $this->
ctrl->redirect($this,
'showThreads');
3651 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'threads_moved_successfully'),
true);
3652 $this->
ctrl->redirect($this,
'showThreads');
3654 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'no_forum_selected'));
3662 $this->
ctrl->redirect($this,
'showThreads');
3667 if (!$this->is_moderator) {
3668 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3671 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3672 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3676 if ($this->
http->wrapper()->post()->has(
'frm_ref_id')) {
3677 $frm_ref_id = $this->
http->wrapper()->post()->retrieve(
3684 if (!is_array($threads2move) || !count($threads2move)) {
3685 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_at_least_one_thread'),
true);
3686 $this->
ctrl->redirect($this,
'showThreads');
3691 array_walk($threads2move,
function (
int $threadId) use (&$threads, $isModerator) {
3695 $threads[] = $thread;
3699 $exp->setPathOpen($this->
object->getRefId());
3700 $exp->setNodeSelected(isset($frm_ref_id) && (
int) $frm_ref_id ? (
int) $frm_ref_id : 0);
3701 $exp->setCurrentFrmRefId($this->
object->getRefId());
3702 $exp->setHighlightedNode((
string) $this->
object->getRefId());
3703 if (!$exp->handleCommand()) {
3705 'tpl.forums_threads_move.html',
3712 $this->
toolbar->addButton($this->
lng->txt(
'back'), $this->
ctrl->getLinkTarget($this));
3716 $tblThr->setId(
'frmthrmv' . $this->
object->getRefId());
3717 $tblThr->setTitle($this->
lng->txt(
'move_chosen_topics'));
3718 $tblThr->addColumn($this->
lng->txt(
'subject'),
'top_name',
'100%');
3719 $tblThr->disable(
'header');
3720 $tblThr->disable(
'footer');
3721 $tblThr->disable(
'linkbar');
3722 $tblThr->disable(
'sort');
3723 $tblThr->disable(
'linkbar');
3724 $tblThr->setLimit(PHP_INT_MAX);
3725 $tblThr->setRowTemplate(
'tpl.forums_threads_move_thr_row.html',
'Modules/Forum');
3726 $tblThr->setDefaultOrderField(
'is_sticky');
3729 foreach ($threads as $thread) {
3730 $result[$counter][
'num'] = $counter + 1;
3731 $result[$counter][
'thr_subject'] = $thread->getSubject();
3734 $tblThr->setData($result);
3735 $moveThreadTemplate->setVariable(
'THREADS_TABLE', $tblThr->getHTML());
3737 $moveThreadTemplate->setVariable(
'FRM_SELECTION_TREE', $exp->getHTML());
3738 $moveThreadTemplate->setVariable(
'CMD_SUBMIT',
'performMoveThreads');
3739 $moveThreadTemplate->setVariable(
'TXT_SUBMIT', $this->
lng->txt(
'move'));
3740 $moveThreadTemplate->setVariable(
'FORMACTION', $this->
ctrl->getFormAction($this,
'performMoveThreads'));
3742 $this->tpl->setContent($moveThreadTemplate->get());
3751 $this->objProperties->isAnonymized() &&
3752 (!$this->is_moderator || !$this->objProperties->getMarkModeratorPosts())
3758 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3759 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3762 $draftIds = array_filter((array) ($this->httpRequest->getParsedBody()[
'draft_ids'] ?? []));
3763 if (0 === count($draftIds)) {
3764 $draftIds = array_filter([(
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0)]);
3768 $checkedDraftIds = [];
3769 foreach ($draftIds as $draftId) {
3770 if (array_key_exists($draftId, $instances)) {
3771 $checkedDraftIds[] = $draftId;
3772 $draft = $instances[$draftId];
3777 $draftFileData->
delete();
3779 $GLOBALS[
'ilAppEventHandler']->raise(
3783 'draftObj' => $draft,
3784 'obj_id' => $this->
object->getId(),
3785 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed(),
3789 $draft->deleteDraft();
3793 if (count($checkedDraftIds) > 1) {
3794 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'delete_drafts_successfully'),
true);
3796 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'delete_draft_successfully'),
true);
3798 $this->
ctrl->redirect($this,
'showThreads');
3803 $draftId = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
3804 $allowNotification = !$this->objProperties->isAnonymized() && !$this->
user->isAnonymous();
3807 if (!$this->
rbac->system()->checkAccess(
'internal_mail', $mail->getMailObjectReferenceId())) {
3808 $allowNotification =
false;
3813 $this->objProperties,
3826 $default_form->generateDefaultForm();
3830 return $default_form;
3835 $draftId = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
3836 $allowNotification = !$this->objProperties->isAnonymized() && !$this->
user->isAnonymous();
3839 if (!$this->
rbac->system()->checkAccess(
'internal_mail', $mail->getMailObjectReferenceId())) {
3840 $allowNotification =
false;
3845 $this->objProperties,
3855 $minimal_form->generateMinimalForm();
3857 return $minimal_form;
3862 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
3863 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3866 if (!$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId())) {
3867 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3870 $tpl =
new ilTemplate(
'tpl.create_thread_form.html',
true,
true,
'Modules/Forum');
3873 $accordion->setId(
'acc_' . $this->obj_id);
3876 $accordion->addItem($this->
lng->txt(
'new_thread_with_post'), $this->
buildThreadForm()->getHTML());
3882 $this->tpl->setContent(
$tpl->
get());
3893 !$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()) ||
3894 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())
3896 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
3899 $frm = $this->
object->Forum;
3900 $frm->setForumId($this->
object->getId());
3901 $frm->setForumRefId($this->
object->getRefId());
3902 $frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
3903 $topicData = $frm->getOneTopic();
3908 if ($form->checkInput()) {
3909 $userIdForDisplayPurposes = $this->
user->getId();
3911 $userIdForDisplayPurposes = 0;
3917 $this->objCurrentPost->isAnyParentDeactivated()
3922 if ($createFromDraft) {
3924 $newThread->setForumId($topicData->getTopPk());
3927 $newThread->setSubject($this->
handleFormInput($form->getInput(
'subject'),
false));
3930 $newPost = $frm->generateThread(
3939 $form->getInput(
'alias'),
3940 $this->objProperties->isAnonymized()
3943 $newThread->setForumId($topicData->getTopPk());
3944 $newThread->setThrAuthorId($this->
user->getId());
3945 $newThread->setDisplayUserId($userIdForDisplayPurposes);
3946 $newThread->setSubject($this->
handleFormInput($form->getInput(
'subject'),
false));
3947 $newThread->setUserAlias($userAlias);
3949 $newPost = $frm->generateThread(
3952 $form->getItemByPostVar(
'notify') && $form->getInput(
'notify') && !$this->
user->isAnonymous(),
3958 if ($this->objProperties->isFileUploadAllowed()) {
3959 $file = $_FILES[
'userfile'];
3960 if (is_array($file) && !empty($file)) {
3966 $frm->setDbTable(
'frm_data');
3967 $frm->setMDB2WhereCondition(
'top_pk = %s ', [
'integer'], [$topicData->getTopPk()]);
3968 $frm->updateVisits($topicData->getTopPk());
3970 if ($createFromDraft) {
3975 foreach ($mediaObjects as $mob) {
3984 $draftHistory->deleteHistoryByDraftIds([$draft->
getDraftId()]);
3985 if ($this->objProperties->isFileUploadAllowed()) {
3988 $draftFileData->moveFilesOfDraft($forumFileData->getForumPath(), $newPost);
3993 $GLOBALS[
'ilAppEventHandler']->raise(
3997 'object' => $this->
object,
3998 'ref_id' => $this->
object->getRefId(),
4000 'notify_moderators' => !$status
4004 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'forums_thread_new_entry'),
true);
4005 $this->
ctrl->redirect($this);
4008 $form->setValuesByPost();
4009 if (!$this->objProperties->isAnonymized()) {
4010 $form->getItemByPostVar(
'alias')->setValue($this->
user->getLogin());
4014 $accordion->setId(
'acc_' . $this->obj_id);
4016 $accordion->addItem($this->
lng->txt(
'new_thread_with_post'), $form->getHTML());
4017 $accordion->addItem($this->
lng->txt(
'empty_thread'), $minimal_form->getHTML());
4019 $this->tpl->setContent($accordion->getHTML());
4030 !$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()) ||
4031 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())
4033 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4036 $frm = $this->
object->Forum;
4037 $frm->setForumId($this->
object->getId());
4038 $frm->setForumRefId($this->
object->getRefId());
4039 $frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
4040 $topicData = $frm->getOneTopic();
4045 if ($minimal_form->checkInput()) {
4046 $userIdForDisplayPurposes = $this->
user->getId();
4048 $userIdForDisplayPurposes = 0;
4054 $this->objCurrentPost->isAnyParentDeactivated()
4060 $minimal_form->getInput(
'alias'),
4061 $this->objProperties->isAnonymized()
4064 $newThread->setForumId($topicData->getTopPk());
4065 $newThread->setThrAuthorId($this->
user->getId());
4066 $newThread->setDisplayUserId($userIdForDisplayPurposes);
4067 $newThread->setSubject($this->
handleFormInput($minimal_form->getInput(
'subject'),
false));
4068 $newThread->setUserAlias($userAlias);
4070 $newPost = $frm->generateThread(
4079 $frm->setDbTable(
'frm_data');
4080 $frm->setMDB2WhereCondition(
'top_pk = %s ', [
'integer'], [$topicData->getTopPk()]);
4081 $frm->updateVisits($topicData->getTopPk());
4083 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'forums_thread_new_entry'),
true);
4084 $this->
ctrl->redirect($this);
4087 $form->setValuesByPost();
4089 if (!$this->objProperties->isAnonymized()) {
4090 $form->getItemByPostVar(
'alias')->setValue($this->
user->getLogin());
4094 $accordion->setId(
'acc_' . $this->obj_id);
4096 $accordion->addItem($this->
lng->txt(
'new_thread_with_post'), $form->getHTML());
4097 $accordion->addItem($this->
lng->txt(
'empty_thread'), $minimal_form->getHTML());
4099 $this->tpl->setContent($accordion->getHTML());
4105 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4108 $draftId = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
4111 if ($draft->getDraftId() <= 0) {
4112 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4122 $draftId = (
int) ($this->httpRequest->getParsedBody()[
'draft_id'] ?? 0);
4135 $draftId = (
int) ($this->httpRequest->getParsedBody()[
'draft_id'] ?? 0);
4146 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId()) || $this->
user->isAnonymous()) {
4147 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4150 $frm = $this->
object->Forum;
4151 $frm->setForumId($this->
object->getId());
4152 $frm->enableForumNotification($this->
user->getId());
4154 if ($this->objCurrentTopic->getId() > 0) {
4155 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4156 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_forum_notification_enabled'),
true);
4157 $this->
ctrl->redirect($this,
'viewThread');
4160 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_forum_notification_enabled'));
4166 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId()) || $this->
user->isAnonymous()) {
4167 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4170 $frm = $this->
object->Forum;
4171 $frm->setForumId($this->
object->getId());
4172 $frm->disableForumNotification($this->
user->getId());
4174 if ($this->objCurrentTopic->getId() > 0) {
4175 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4176 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_forum_notification_disabled'),
true);
4177 $this->
ctrl->redirect($this,
'viewThread');
4180 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'forums_forum_notification_disabled'));
4190 if ($this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
4192 if ($news_set->get(
'enable_rss_for_internal')) {
4203 $this->
object->getTitle(),
4204 $this->
ctrl->getLinkTarget($this),
4206 $this->
object->getRefId()
4213 $a_text = str_replace([
"<",
">"], [
"<",
">"], $a_text);
4214 if ($a_stripslashes) {
4223 $a_text = str_replace([
"<",
">"], [
"<",
">"], $a_text);
4231 !$this->
access->checkAccess(
'visible',
'', $this->object->getRefId()) &&
4232 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())
4234 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
4238 $info->enablePrivateNotes();
4239 $info->addMetaDataSections($this->
object->getId(), 0, $this->
object->getType());
4240 $this->
ctrl->forwardCommand($info);
4245 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4246 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4249 if ($this->objCurrentPost->getId() > 0) {
4252 $this->
object->markPostUnread($this->
user->getId(), $this->objCurrentPost->getId());
4259 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4260 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4263 if ($this->objCurrentTopic->getId() > 0 && $this->objCurrentPost->getId() > 0) {
4266 $this->
object->markPostRead(
4267 $this->
user->getId(),
4268 $this->objCurrentTopic->getId(),
4269 $this->objCurrentPost->getId()
4273 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4274 $this->
ctrl->redirect($this,
'viewThread');
4279 $lg = parent::initHeaderAction();
4285 if ($this->
user->isAnonymous() || !$this->
access->checkAccess(
'read',
'', $this->
object->getRefId())) {
4289 $frm = $this->
object->Forum;
4290 $frm->setForumId($this->
object->getId());
4291 $frm->setForumRefId($this->
object->getRefId());
4292 $frm->setMDB2Wherecondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
4294 $isForumNotificationEnabled = $frm->isForumNotificationEnabled($this->
user->getId());
4297 if ($this->objCurrentTopic->getId() > 0) {
4298 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4301 if (!$this->
user->isAnonymous()) {
4304 if ($isForumNotificationEnabled && $userMayDisableNotifications) {
4305 $lg->addCustomCommand(
4306 $this->
ctrl->getLinkTarget($this,
'disableForumNotification'),
4307 'forums_disable_forum_notification' 4309 } elseif (!$isForumNotificationEnabled) {
4310 $lg->addCustomCommand(
4311 $this->
ctrl->getLinkTarget($this,
'enableForumNotification'),
4312 'forums_enable_forum_notification' 4315 } elseif ($isForumNotificationEnabled) {
4316 $lg->addCustomCommand(
4317 $this->
ctrl->getLinkTarget($this,
'disableForumNotification'),
4318 'forums_disable_forum_notification' 4321 $lg->addCustomCommand(
4322 $this->
ctrl->getLinkTarget($this,
'enableForumNotification'),
4323 'forums_enable_forum_notification' 4329 if (!$this->
user->isAnonymous() && $isForumNotificationEnabled && $userMayDisableNotifications) {
4331 $frm_noti->setUserId($this->
user->getId());
4332 $interested_events = $frm_noti->readInterestedEvents();
4335 'hidden_value' =>
'',
4343 $notificationsModal = $this->uiFactory->modal()->roundtrip(
4344 $this->
lng->txt(
'notification_settings'),
4345 $events_form_builder->build()
4346 )->withActionButtons([
4349 ->primary($this->
lng->txt(
'save'),
'#')
4352 $('#$id').closest('.modal').find('form').addClass('ilForumNotificationSettingsForm'); 4353 $('#$id').closest('.modal').find('form .il-standard-form-header, .il-standard-form-footer').remove(); 4354 $('#$id').click(function() { $(this).closest('.modal').find('form').submit(); return false; }); 4359 $showNotificationSettingsBtn = $this->uiFactory->button()
4360 ->shy($this->
lng->txt(
'notification_settings'),
'#')
4362 $notificationsModal->getShowSignal()
4365 $lg->addCustomCommandButton($showNotificationSettingsBtn, $notificationsModal);
4368 $isThreadNotificationEnabled =
false;
4369 if (!$this->
user->isAnonymous() && $this->objCurrentTopic->getId() > 0) {
4370 $isThreadNotificationEnabled = $this->objCurrentTopic->isNotificationEnabled($this->
user->getId());
4371 if ($isThreadNotificationEnabled) {
4372 $lg->addCustomCommand(
4373 $this->
ctrl->getLinkTarget($this,
'toggleThreadNotification'),
4374 'forums_disable_notification' 4377 $lg->addCustomCommand(
4378 $this->
ctrl->getLinkTarget($this,
'toggleThreadNotification'),
4379 'forums_enable_notification' 4383 $this->
ctrl->setParameter($this,
'thr_pk',
'');
4385 if (!$this->
user->isAnonymous()) {
4386 if ($isForumNotificationEnabled || $isThreadNotificationEnabled) {
4390 $this->
lng->txt(
'frm_notification_activated')
4396 $this->
lng->txt(
'frm_notification_deactivated')
4411 if ($this->objCurrentTopic->getId() > 0) {
4412 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4416 $this->
ctrl->getFormAction($this,
'saveUserNotificationSettings'),
4427 if ($this->httpRequest->getMethod() ===
'POST') {
4428 $form = $events_form_builder->build()->withRequest($this->httpRequest);
4429 $formData = $form->getData();
4433 foreach ($events_form_builder->getValidEvents() as $event) {
4434 $interested_events += isset($formData[$event]) && $formData[$event] ? $events_form_builder->getValueForEvent(
4441 $frm_noti->setInterestedEvents($interested_events);
4442 $frm_noti->updateInterestedEvents();
4445 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
4447 if ($this->objCurrentTopic->getId() > 0) {
4448 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
4449 $this->
ctrl->redirect($this,
'viewThread');
4452 $this->
ctrl->redirect($this,
'showThreads');
4457 if ($this->objProperties->getNotificationType() ===
'default') {
4461 if ($this->objProperties->isUserToggleNoti() ===
false) {
4468 $frm_noti->setUserId($this->
user->getId());
4470 return $frm_noti->isUserToggleNotification() ===
false;
4478 $grpRefId = $this->tree->checkForParentType($this->
object->getRefId(),
'grp');
4479 $crsRefId = $this->tree->checkForParentType($this->
object->getRefId(),
'crs');
4481 return ($grpRefId > 0 || $crsRefId > 0);
4486 if (!$this->is_moderator) {
4487 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4490 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4491 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4494 $threadIdToSortValueMap = (array) ($this->httpRequest->getParsedBody()[
'thread_sorting'] ?? []);
4496 array_walk($threadIdToSortValueMap,
function ($sortValue, $threadId) {
4500 foreach ($threadIdToSortValueMap as $threadId => $sortValue) {
4501 $sortValue = str_replace(
',',
'.', $sortValue);
4502 $sortValue = ((float) $sortValue) * 100;
4503 $this->
object->setThreadSorting((
int) $threadId, (
int) $sortValue);
4506 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
4507 $this->
ctrl->redirect($this,
'showThreads');
4512 if (!$this->is_moderator) {
4513 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4516 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4517 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4520 $threadIdToMerge = (
int) ($this->httpRequest->getQueryParams()[
'merge_thread_id'] ?? 0);
4521 if (!($threadIdToMerge > 0)) {
4522 $threadIds = array_values(
4523 array_filter(array_map(
'intval', (array) ($this->httpRequest->getParsedBody()[
'thread_ids'] ?? [])))
4525 if (1 === count($threadIds)) {
4526 $threadIdToMerge = current($threadIds);
4528 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_one'));
4534 $frm = $this->
object->Forum;
4535 $frm->setForumId($this->
object->getId());
4536 $frm->setForumRefId($this->
object->getRefId());
4541 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'not_allowed_to_merge_into_another_forum'));
4546 $frm->setMDB2Wherecondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
4549 'tpl.forums_threads_liste.html',
4555 $topicData = $frm->getOneTopic();
4556 if ($topicData->getTopPk() > 0) {
4557 $this->
ctrl->setParameter($this,
'merge_thread_id', $threadIdToMerge);
4561 (
int) $this->httpRequest->getQueryParams()[
'ref_id'],
4566 $tbl->setSelectedThread($threadToMerge);
4567 $tbl->setMapper($frm)->fetchData();
4569 $threadsTemplate->setVariable(
'THREADS_TABLE', $tbl->getHTML());
4570 $this->tpl->setContent($threadsTemplate->get());
4572 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
4579 if (!$this->is_moderator) {
4580 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4583 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4584 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4587 $sourceThreadId = (
int) ($this->httpRequest->getQueryParams()[
'merge_thread_id'] ?? 0);
4588 $targetThreadIds = array_values(
4589 array_filter(array_map(
'intval', (array) ($this->httpRequest->getParsedBody()[
'thread_ids'] ?? [])))
4592 if (!($sourceThreadId > 0) || 1 !== count($targetThreadIds)) {
4593 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
4598 $targetThreadId = current($targetThreadIds);
4599 if ($sourceThreadId === $targetThreadId) {
4600 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'error_same_thread_ids'));
4606 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'not_allowed_to_merge_into_another_forum'));
4607 $this->
ctrl->clearParameters($this);
4613 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'switch_threads_for_merge'));
4621 $c_gui->setFormAction($this->
ctrl->getFormAction($this,
'performMergeThreads'));
4622 $c_gui->setHeaderText($this->
lng->txt(
'frm_sure_merge_threads'));
4623 $c_gui->setCancel($this->
lng->txt(
'cancel'),
'showThreads');
4624 $c_gui->setConfirm($this->
lng->txt(
'confirm'),
'performMergeThreads');
4628 (
string) $sourceThreadId,
4633 (
string) $targetThreadId,
4636 $this->tpl->setContent($c_gui->getHTML());
4641 if (!$this->is_moderator) {
4642 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4645 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4646 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4649 $threadIds = array_values(
4650 array_filter(array_map(
'intval', (array) ($this->httpRequest->getParsedBody()[
'thread_ids'] ?? [])))
4652 if (2 !== count($threadIds)) {
4653 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
4658 if ((
int) $threadIds[0] === (
int) $threadIds[1]) {
4659 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'error_same_thread_ids'));
4666 $frm->setForumId($this->
object->getId());
4667 $frm->setForumRefId($this->
object->getRefId());
4672 $frm->mergeThreads((
int) $threadIds[0], (
int) $threadIds[1]);
4673 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'merged_threads_successfully'));
4675 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($e->getMessage()));
4684 if (!$this->
ctrl->isAsynch()) {
4685 $content = implode(
'', [
4690 $this->tpl->setRightContent($content);
4695 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4696 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4699 $draftId = $this->httpRequest->getQueryParams()[
'draft_id'] ?? 0;
4701 if ($draft->getPostAuthorId() === $this->
user->getId()) {
4703 if (!$fileData->deliverZipFile()) {
4704 $this->
ctrl->redirect($this);
4711 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
4712 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4718 if (!$fileData->deliverZipFile()) {
4719 $this->
ctrl->redirect($this);
4730 !$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()) ||
4731 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())
4733 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4736 $frm = $this->
object->Forum;
4737 $frm->setForumId($this->
object->getId());
4738 $frm->setForumRefId($this->
object->getRefId());
4741 $draftId = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
4746 $historyCheck = (
int) ($this->httpRequest->getQueryParams()[
'hist_check'] ?? 1);
4751 if (!$form instanceof ilPropertyFormGUI) {
4753 $form->setValuesByArray([
4754 'alias' => $draft->getPostUserAlias(),
4755 'subject' => $draft->getPostSubject(),
4757 'notify' => $draft->isNotificationEnabled() && !$this->
user->isAnonymous(),
4760 'draft_id' => $draftId
4763 $this->
ctrl->setParameter($this,
'draft_id', $draftId);
4771 $historyId = (
int) ($this->httpRequest->getQueryParams()[
'history_id'] ?? 0);
4774 $draft = $history->rollbackAutosave();
4775 if ($draft->getThreadId() === 0 && $draft->getPostId() === 0) {
4776 $this->
ctrl->setParameter($this,
'draft_id', $history->getDraftId());
4777 $this->
ctrl->redirect($this,
'editThreadDraft');
4780 $this->
ctrl->clearParameters($this);
4781 $this->
ctrl->setParameter($this,
'pos_pk', $draft->getPostId());
4782 $this->
ctrl->setParameter($this,
'thr_pk', $draft->getThreadId());
4783 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
4784 $this->
ctrl->setParameter($this,
'action',
'editdraft');
4788 $this->
ctrl->redirect($this,
'viewThread');
4795 !$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()) ||
4796 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())
4798 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4801 $autoSavedDraftId = (
int) ($this->httpRequest->getParsedBody()[
'draft_id'] ?? 0);
4802 if ($autoSavedDraftId <= 0) {
4803 $autoSavedDraftId = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
4806 $frm = $this->
object->Forum;
4807 $frm->setForumId($this->
object->getId());
4808 $frm->setForumRefId($this->
object->getRefId());
4809 $frm->setMDB2WhereCondition(
'top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
4810 $topicData = $frm->getOneTopic();
4813 if ($form->checkInput()) {
4814 if (0 === $autoSavedDraftId) {
4820 $draft->setForumId($topicData->getTopPk());
4821 $draft->setThreadId(0);
4822 $draft->setPostId(0);
4823 $draft->setPostSubject($this->
handleFormInput($form->getInput(
'subject'),
false));
4826 $form->getInput(
'alias'),
4827 $this->objProperties->isAnonymized()
4829 $draft->setPostUserAlias($userAlias);
4830 $draft->setNotificationStatus($form->getInput(
'notify') && !$this->
user->isAnonymous());
4831 $draft->setPostAuthorId($this->
user->getId());
4834 if (0 === $autoSavedDraftId) {
4835 $draftId = $draft->saveDraft();
4837 $draft->updateDraft();
4838 $draftId = $draft->getDraftId();
4841 $GLOBALS[
'ilAppEventHandler']->raise(
4845 'draftObj' => $draft,
4846 'obj_id' => $this->
object->getId(),
4847 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed(),
4855 $files2delete = $form->getInput(
'del_file');
4856 if (is_array($files2delete) && count($files2delete) > 0) {
4860 if ($this->objProperties->isFileUploadAllowed()) {
4861 $file = $_FILES[
'userfile'];
4862 if (is_array($file) && !empty($file)) {
4863 $draftFileData->storeUploadedFile($file);
4867 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'save_draft_successfully'),
true);
4868 $this->
ctrl->clearParameters($this);
4869 $this->
ctrl->redirect($this,
'showThreads');
4872 $this->requestAction = substr($this->requestAction, 6);
4873 $form->setValuesByPost();
4874 $this->
ctrl->setParameter($this,
'draft_id', $autoSavedDraftId);
4875 $this->tpl->setContent($form->getHTML());
4882 !$this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId()) ||
4883 !$this->
access->checkAccess(
'read',
'', $this->object->getRefId())
4885 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4888 $draftId = (
int) ($this->httpRequest->getQueryParams()[
'draft_id'] ?? 0);
4890 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
4894 if ($form->checkInput()) {
4896 $form->getInput(
'alias'),
4897 $this->objProperties->isAnonymized()
4901 $draft->setPostSubject($this->
handleFormInput($form->getInput(
'subject'),
false));
4903 $draft->setPostUserAlias($userAlias);
4904 $draft->setNotificationStatus($form->getInput(
'notify') && !$this->
user->isAnonymous());
4905 $draft->setPostAuthorId($this->
user->getId());
4907 $draft->updateDraft();
4909 $GLOBALS[
'ilAppEventHandler']->raise(
4913 'draftObj' => $draft,
4914 'obj_id' => $this->
object->getId(),
4915 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed(),
4920 $form->getInput(
'message'),
4922 $draft->getDraftId(),
4924 $draft->getDraftId()
4929 $files2delete = $form->getInput(
'del_file');
4930 if (is_array($files2delete) && count($files2delete) > 0) {
4934 if ($this->objProperties->isFileUploadAllowed()) {
4935 $file = $_FILES[
'userfile'];
4936 if (is_array($file) && !empty($file)) {
4937 $draftFileData->storeUploadedFile($file);
4941 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'save_draft_successfully'),
true);
4942 $this->
ctrl->clearParameters($this);
4943 $this->
ctrl->redirect($this,
'showThreads');
4946 $form->setValuesByPost();
4947 $this->
ctrl->setParameter($this,
'hist_check', 0);
4948 $this->
ctrl->setParameter($this,
'draft_id', $draftId);
4963 if ($this->
http->wrapper()->post()->has(
'del_file')) {
4964 $del_file = $this->
http->wrapper()->post()->retrieve(
4970 if ($this->
http->wrapper()->post()->has(
'draft_id')) {
4971 $draft_id = $this->
http->wrapper()->post()->retrieve(
4973 $this->
refinery->kindlyTo()->string()
4977 if (!$this->objCurrentTopic->getId()) {
4978 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_deleted'),
true);
4979 $this->
ctrl->redirect($this);
4982 if ($this->objCurrentTopic->isClosed()) {
4983 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_closed'),
true);
4984 $this->
ctrl->redirect($this);
4987 $autosave_draft_id = 0;
4989 $autosave_draft_id = (
int) $draft_id;
4992 if ($oReplyEditForm->checkInput()) {
4993 if (!$this->objCurrentPost->getId()) {
4994 $this->requestAction =
'';
4995 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_parent_deleted'),
true);
5001 $forumObj = $oForumObjects[
'forumObj'];
5002 $frm = $oForumObjects[
'frm'];
5003 $frm->setMDB2WhereCondition(
' top_frm_fk = %s ', [
'integer'], [$frm->getForumId()]);
5004 $topicData = $frm->getOneTopic();
5006 if ($this->requestAction ===
'ready_showreply') {
5007 if (!$this->
access->checkAccess(
'add_reply',
'',
$ref_id)) {
5008 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5012 $oReplyEditForm->getInput(
'alias'),
5013 $this->objProperties->isAnonymized()
5016 if ($autosave_draft_id === 0) {
5021 $draftObj->setForumId($topicData->getTopPk());
5022 $draftObj->setThreadId($this->objCurrentTopic->getId());
5023 $draftObj->setPostId($this->objCurrentPost->getId());
5025 $draftObj->setPostSubject($this->
handleFormInput($oReplyEditForm->getInput(
'subject'),
false));
5027 $draftObj->setPostUserAlias($user_alias);
5028 $draftObj->setNotificationStatus($oReplyEditForm->getInput(
'notify') && !$this->
user->isAnonymous());
5029 $draftObj->setPostNotificationStatus($oReplyEditForm->getInput(
'notify_post') && !$this->
user->isAnonymous());
5031 $draftObj->setPostAuthorId($this->
user->getId());
5034 if ($autosave_draft_id === 0) {
5035 $draft_id = $draftObj->saveDraft();
5037 $draftObj->updateDraft();
5038 $draft_id = $draftObj->getDraftId();
5042 $GLOBALS[
'ilAppEventHandler']->raise(
5046 'draftObj' => $draftObj,
5047 'obj_id' => $this->
object->getId(),
5048 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed()
5053 if ($this->objProperties->isFileUploadAllowed()) {
5054 $file = $_FILES[
'userfile'];
5055 if (is_array($file) && !empty($file)) {
5063 $oReplyEditForm->getInput(
'message'),
5071 if (is_array($frm_session_values)) {
5072 $frm_session_values[$thr_pk][
'openTreeNodes'][] = $this->objCurrentPost->getId();
5076 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'save_draft_successfully'),
true);
5077 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5078 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5079 $this->
ctrl->redirect($this,
'viewThread');
5082 $oReplyEditForm->setValuesByPost();
5083 $this->requestAction = substr($this->requestAction, 6);
5106 if (!$this->objCurrentTopic->getId()) {
5107 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_deleted'),
true);
5108 $this->
ctrl->redirect($this);
5111 if ($this->objCurrentTopic->isClosed()) {
5112 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_thr_closed'),
true);
5113 $this->
ctrl->redirect($this);
5116 if (!$this->objCurrentPost->getId()) {
5117 $this->requestAction =
'';
5118 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_action_not_possible_parent_deleted'));
5124 if ($this->
http->wrapper()->post()->has(
'del_file')) {
5125 $del_file = $this->
http->wrapper()->post()->retrieve(
5132 if ($oReplyEditForm->checkInput()) {
5135 $forumObj = $oForumObjects[
'forumObj'];
5137 if (!$this->
user->isAnonymous() && in_array($this->requestAction, [
'showdraft',
'editdraft'])) {
5138 if (!$this->
access->checkAccess(
'add_reply',
'',
$ref_id)) {
5139 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5142 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5146 $oReplyEditForm->getInput(
'alias'),
5147 $this->objProperties->isAnonymized()
5152 $this->
user->getId(),
5153 $this->objCurrentPost->getId(),
5159 $oReplyEditForm->getInput(
'message')
5161 $update_draft->setPostUserAlias($user_alias);
5162 $update_draft->setNotificationStatus($oReplyEditForm->getInput(
'notify') && !$this->
user->isAnonymous());
5163 $update_draft->setUpdateUserId($this->
user->getId());
5164 $update_draft->setPostAuthorId($this->
user->getId());
5167 $update_draft->updateDraft();
5170 $GLOBALS[
'ilAppEventHandler']->raise(
5174 'draftObj' => $update_draft,
5175 'obj_id' => $this->
object->getId(),
5176 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed()
5183 foreach ($uploadedObjects as $mob) {
5188 $oReplyEditForm->getInput(
'message'),
5190 $update_draft->getDraftId()
5195 $file2delete = $oReplyEditForm->getInput(
'del_file');
5196 if (is_array($file2delete) && count($file2delete)) {
5200 if ($this->objProperties->isFileUploadAllowed()) {
5201 $file = $_FILES[
'userfile'];
5202 if (is_array($file) && !empty($file)) {
5203 $oFDForumDrafts->storeUploadedFile($file);
5208 if (is_array($frm_session_values)) {
5209 $frm_session_values[$thr_pk][
'openTreeNodes'][] = $this->objCurrentPost->getId();
5212 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'save_draft_successfully'),
true);
5213 $this->
ctrl->clearParameters($this);
5214 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5215 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5216 $this->
ctrl->setParameter($this,
'draft_id', $update_draft->getDraftId());
5219 $this->
ctrl->clearParameters($this);
5220 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5221 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5222 $this->
ctrl->setParameter($this,
'draft_id', $draft_id);
5223 $this->
ctrl->setParameter($this,
'action',
'editdraft');
5224 $oReplyEditForm->setValuesByPost();
5228 $this->
ctrl->clearParameters($this);
5229 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5230 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5231 $this->
ctrl->redirect($this,
'viewThread');
5239 foreach ($oldMediaObjects as $oldMob) {
5241 foreach ($curMediaObjects as $curMob) {
5242 if ($oldMob === $curMob) {
5262 $this->
user->isAnonymous() ||
5263 ($draft_obj instanceof
ilForumPostDraft && $this->
user->getId() !== $draft_obj->getPostAuthorId())) {
5264 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5267 $post_id = $this->objCurrentPost->getId();
5269 $draft_id_to_delete = $draft_id;
5270 $draft_obj =
new ilForumPostDraft($this->
user->getId(), $post_id, $draft_id_to_delete);
5272 if (!$draft_obj->getDraftId() || ($draft_obj->getDraftId() !== $draft_id_to_delete)) {
5273 $this->
ctrl->clearParameters($this);
5274 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5275 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5276 $this->
ctrl->redirect($this,
'viewThread');
5280 $this->
deleteMobsOfDraft($draft_obj->getDraftId(), $draft_obj->getPostMessage());
5283 $objFileDataForumDrafts->
delete();
5286 $GLOBALS[
'ilAppEventHandler']->raise(
5290 'draftObj' => $draft_obj,
5291 'obj_id' => $this->
object->getId(),
5292 'is_file_upload_allowed' => $this->objProperties->isFileUploadAllowed()
5296 $draft_obj->deleteDraft();
5298 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'delete_draft_successfully'),
true);
5299 $this->
ctrl->clearParameters($this);
5300 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5301 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5302 $this->
ctrl->redirect($this,
'viewThread');
5308 $this->requestAction !==
'ready_showreply' &&
5309 $this->
access->checkAccess(
'read',
'', $this->object->getRefId()) &&
5310 $this->
access->checkAccess(
'add_reply',
'', $this->object->getRefId())
5315 $this->objProperties,
5316 $this->objCurrentTopic,
5317 $this->objCurrentPost,
5318 function (
string $message):
string {
5326 $this->
http->saveResponse($this->
http->response()->withBody(
5328 $action->executeAndGetResponseObject(),
5334 $this->
http->sendResponse();
5335 $this->
http->close();
5341 $this->requestAction !==
'ready_showreply' &&
5342 $this->
access->checkAccess(
'read',
'', $this->object->getRefId()) &&
5343 $this->
access->checkAccess(
'add_thread',
'', $this->object->getRefId())
5348 $this->objProperties,
5349 $this->objCurrentTopic,
5350 $this->objCurrentPost,
5351 function (
string $message):
string {
5359 $this->
http->saveResponse($this->
http->response()->withBody(
5361 $action->executeAndGetResponseObject(),
5367 $this->
http->sendResponse();
5368 $this->
http->close();
5385 $this->objCurrentPost->getId() !== $node->
getId() || (
5386 !in_array($action, [
'showreply',
'showedit',
'censor',
'delete'],
true) &&
5391 if ($this->is_moderator && !$this->objCurrentTopic->isClosed() && !$node->
isActivated()) {
5392 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5394 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5395 $this->
ctrl->setParameter(
5400 $actions[
'activate_post'] = $this->
ctrl->getLinkTarget(
5402 'askForPostActivation',
5403 (
string) $node->
getId()
5405 $this->
ctrl->clearParameters($this);
5410 $this->
access->checkAccess(
'add_reply',
'', $this->
object->getRefId())
5412 $this->
ctrl->setParameter($this,
'action',
'showreply');
5413 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5414 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5415 $this->
ctrl->setParameter(
5421 $actions[
'reply_to_postings'] = $this->
ctrl->getLinkTarget(
5424 'reply_' . $node->
getId()
5426 $this->
ctrl->clearParameters($this);
5430 !$this->objCurrentTopic->isClosed() &&
5432 !$this->
user->isAnonymous() &&
5433 ($node->
isOwner($this->
user->getId()) || $this->is_moderator)
5435 $this->
ctrl->setParameter($this,
'action',
'showedit');
5436 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5438 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5439 $this->
ctrl->setParameter(
5444 $actions[
'edit'] = $this->
ctrl->getLinkTarget($this,
'viewThread', (
string) $node->
getId());
5445 $this->
ctrl->clearParameters($this);
5448 if (!$this->
user->isAnonymous()) {
5449 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5451 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5452 $this->
ctrl->setParameter(
5457 $this->
ctrl->setParameter($this,
'viewmode', $this->selectedSorting);
5459 $read_undread_txt =
'frm_mark_as_read';
5460 $read_undread_cmd =
'markPostRead';
5462 $read_undread_txt =
'frm_mark_as_unread';
5463 $read_undread_cmd =
'markPostUnread';
5465 $actions[$read_undread_txt] = $this->
ctrl->getLinkTarget(
5468 (
string) $node->
getId()
5471 $this->
ctrl->clearParameters($this);
5475 $this->
ctrl->setParameterByClass(ilForumExportGUI::class,
'print_post', $node->
getId());
5476 $this->
ctrl->setParameterByClass(ilForumExportGUI::class,
'top_pk', $node->
getForumId());
5477 $this->
ctrl->setParameterByClass(ilForumExportGUI::class,
'thr_pk', $node->
getThreadId());
5479 $actions[
'print'] = $this->
ctrl->getLinkTargetByClass(ilForumExportGUI::class,
'printPost');
5481 $this->
ctrl->clearParameters($this);
5485 !$this->objCurrentTopic->isClosed() &&
5486 !$this->
user->isAnonymous() &&
5489 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5491 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5492 $this->
ctrl->setParameter(
5497 $actions[
'delete'] = $this->
ctrl->getFormAction($this,
'deletePosting');
5498 $this->
ctrl->clearParameters($this);
5501 if ($this->is_moderator && !$this->objCurrentTopic->isClosed()) {
5502 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5504 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5505 $this->
ctrl->setParameter(
5511 $this->
ctrl->setParameter($this,
'action',
'viewThread');
5512 $actions[
'frm_revoke_censorship'] = $this->
ctrl->getFormAction($this,
'revokeCensorship');
5514 $actions[
'frm_censorship'] = $this->
ctrl->getFormAction($this,
'addCensorship');
5516 $this->
ctrl->clearParameters($this);
5520 } elseif ($draft_id !== $draft->getDraftId() || !in_array($action, [
'deletedraft',
'editdraft'])) {
5522 $this->
ctrl->setParameter($this,
'action',
'publishdraft');
5523 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5524 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
5525 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5526 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
5527 $this->
ctrl->setParameter(
5532 $actions[
'publish'] = $this->
ctrl->getLinkTarget($this,
'publishSelectedDraft', (
string) $node->
getId());
5533 $this->
ctrl->clearParameters($this);
5535 $this->
ctrl->setParameter($this,
'action',
'editdraft');
5536 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5537 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
5538 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
5539 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5540 $this->
ctrl->setParameter(
5545 $actions[
'edit'] = $this->
ctrl->getLinkTarget($this,
'editDraft',
'draft_edit_' . $draft->getDraftId());
5546 $this->
ctrl->clearParameters($this);
5548 $this->
ctrl->setParameter($this,
'pos_pk', $node->
getId());
5549 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
5550 $this->
ctrl->setParameter($this,
'draft_id', $draft->getDraftId());
5551 $this->
ctrl->setParameter($this,
'page', $pageIndex);
5552 $this->
ctrl->setParameter(
5557 $actions[
'delete'] = $this->
ctrl->getFormAction($this,
'deletePostingDraft');
5558 $this->
ctrl->clearParameters($this);
5560 if ($draft_id !== 0 && $action ===
'editdraft') {
5566 if (count($actions) > 0 && !$this->objCurrentTopic->isClosed()) {
5570 foreach ($actions as $lng_id =>
$url) {
5573 $sb_item->setCaption($lng_id);
5574 $sb_item->setUrl(
$url);
5576 $action_button->setDefaultButton($sb_item);
5579 if (
'frm_revoke_censorship' === $lng_id ||
'frm_censorship' === $lng_id) {
5580 $modalTemplate =
new ilTemplate(
"tpl.forums_censor_modal.html",
true,
true,
'Modules/Forum');
5581 $formID = str_replace(
'.',
'_', uniqid(
'form',
true));
5582 $modalTemplate->setVariable(
'FORM_ID', $formID);
5585 $modalTemplate->setVariable(
'BODY', $this->
lng->txt(
'forums_info_censor2_post'));
5587 $modalTemplate->setVariable(
'BODY', $this->
lng->txt(
'forums_info_censor_post'));
5588 $modalTemplate->touchBlock(
'message');
5591 $modalTemplate->setVariable(
'FORM_ACTION',
$url);
5593 $content = $this->uiFactory->legacy($modalTemplate->get());
5594 $submitBtn = $this->uiFactory->button()->primary(
5595 $this->
lng->txt(
'submit'),
5598 static function (
string $id) use ($formID):
string {
5599 return "$('#$id').click(function() { $('#$formID').submit(); return false; });";
5602 $modal = $this->uiFactory->modal()->roundtrip(
5603 $this->
lng->txt($lng_id),
5605 )->withActionButtons([$submitBtn]);
5606 $sb_item = $this->uiFactory->button()->shy($this->
lng->txt($lng_id),
'#')->withOnClick(
5607 $modal->getShowSignal()
5610 $this->modalActionsContainer[] = $modal;
5617 } elseif (
'delete' === $lng_id) {
5618 $modal = $this->uiFactory->modal()->interruptive(
5619 $this->
lng->txt($lng_id),
5620 strpos(
$url,
'deletePostingDraft') !==
false ?
5621 $this->
lng->txt(
'forums_info_delete_draft') :
5622 $this->
lng->txt(
'forums_info_delete_post'),
5624 )->withActionButtonLabel(
5625 strpos(
$url,
'deletePostingDraft') !==
false ?
'deletePostingDraft' :
'deletePosting' 5628 $deleteAction = $this->uiFactory->button()->shy($this->
lng->txt($lng_id),
'#')->withOnClick(
5629 $modal->getShowSignal()
5632 $this->modalActionsContainer[] = $modal;
5634 $action_button->addMenuItem(
5641 $sb_item->setCaption($lng_id);
5642 $sb_item->setUrl(
$url);
5648 $tpl->
setVariable(
'COMMANDS', $action_button->render());
5656 $this->
user->isAnonymous() || !$this->
access->checkAccess(
'add_reply',
'', $this->
object->getRefId()) ||
5657 $this->
user->getId() !== $draft->getPostAuthorId()
5659 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5668 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5677 if ($draftsFromHistory !== []) {
5679 $modal->setHeading($this->
lng->txt(
'restore_draft_from_autosave'));
5680 $modal->setId(
'frm_autosave_restore');
5681 $form_tpl =
new ilTemplate(
'tpl.restore_thread_draft.html',
true,
true,
'Modules/Forum');
5683 foreach ($draftsFromHistory as
$key => $history_instance) {
5685 $accordion->setId(
'acc_' . $history_instance->getHistoryId());
5687 $form_tpl->setCurrentBlock(
'list_item');
5691 $history_instance->getDraftDate(),
5694 $this->
ctrl->setParameter($this,
'history_id', $history_instance->getHistoryId());
5695 $header = $history_date;
5698 'tpl.restore_thread_draft_accordion_content.html',
5703 $accordion_tpl->setVariable(
'HEADER', $history_instance->getPostSubject());
5704 $accordion_tpl->setVariable(
'MESSAGE',
$message);
5705 $accordion_tpl->setVariable(
5707 $this->uiRenderer->render(
5708 $this->uiFactory->button()->standard(
5709 $this->
lng->txt(
'restore'),
5710 $this->
ctrl->getLinkTarget($this,
'restoreFromHistory')
5714 $accordion->addItem($header, $accordion_tpl->get());
5716 $form_tpl->setVariable(
'ACC_AUTO_SAVE', $accordion->getHTML());
5717 $form_tpl->parseCurrentBlock();
5720 $form_tpl->setVariable(
'RESTORE_DATA_EXISTS',
'found_threat_history_to_restore');
5721 $modal->setBody($form_tpl->get());
5723 $this->modal_history = $modal->getHTML();
5735 $action ===
'showedit' && (
5736 (!$this->is_moderator && !$node->
isOwner($this->user->getId())) ||
5737 $this->
user->isAnonymous() ||
5741 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5742 } elseif ($action ===
'showreply' && !$this->
access->checkAccess(
'add_reply',
'',
$ref_id)) {
5743 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
5746 $tpl->
setVariable(
'REPLY_ANKER',
'reply_' . $this->objCurrentPost->getId());
5749 if ($action !==
'editdraft') {
5750 switch ($this->objProperties->getSubjectSetting()) {
5751 case 'add_re_to_subject':
5755 case 'preset_subject':
5756 $subject = $this->objCurrentPost->getSubject();
5759 case 'empty_subject':
5767 if ($this->
ctrl->getCmd() ===
'savePost' || $this->
ctrl->getCmd() ===
'saveAsDraft') {
5768 $oEditReplyForm->setValuesByPost();
5769 } elseif ($this->
ctrl->getCmd() ===
'quotePost') {
5777 $oEditReplyForm->setValuesByPost();
5778 $oEditReplyForm->getItemByPostVar(
'message')->setValue(
5783 $authorinfo->getAuthorName()
5784 ) .
"\n" . $oEditReplyForm->getInput(
'message'),
5789 $oEditReplyForm->setValuesByArray([
5790 'draft_id' => $draft_id,
5792 'subject' => $subject,
5800 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5801 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5803 $jsTpl =
new ilTemplate(
'tpl.forum_post_quoation_ajax_handler.js',
true,
true,
'Modules/Forum');
5804 $jsTpl->setVariable(
5805 'IL_FRM_QUOTE_CALLBACK_SRC',
5806 $this->
ctrl->getLinkTarget($this,
'getQuotationHTMLAsynch',
'',
true)
5808 $this->
ctrl->clearParameters($this);
5809 $this->tpl->addOnLoadCode($jsTpl->get());
5813 if ($this->
ctrl->getCmd() ===
'savePost') {
5814 $oEditReplyForm->setValuesByPost();
5816 $oEditReplyForm->setValuesByArray([
5818 'subject' => $this->objCurrentPost->getSubject(),
5820 $this->objCurrentPost->getMessage(),
5823 'notify' => $this->objCurrentPost->isNotificationEnabled() && !$this->
user->isAnonymous(),
5826 'draft_id' => $draft_id
5830 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getParentId());
5831 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5832 $jsTpl =
new ilTemplate(
'tpl.forum_post_quoation_ajax_handler.js',
true,
true,
'Modules/Forum');
5833 $jsTpl->setVariable(
5834 'IL_FRM_QUOTE_CALLBACK_SRC',
5835 $this->
ctrl->getLinkTarget($this,
'getQuotationHTMLAsynch',
'',
true)
5837 $this->
ctrl->clearParameters($this);
5838 $this->tpl->addOnLoadCode($jsTpl->get());
5842 if (in_array($this->
ctrl->getCmd(), [
'saveDraft',
'updateDraft',
'publishDraft'])) {
5843 $oEditReplyForm->setValuesByPost();
5844 } elseif ($draft_id > 0) {
5847 $this->
user->getId(),
5848 $this->objCurrentPost->getId(),
5851 $oEditReplyForm->setValuesByArray([
5852 'alias' => $draftObject->getPostUserAlias(),
5853 'subject' => $draftObject->getPostSubject(),
5855 $draftObject->getPostMessage(),
5858 'notify' => $draftObject->isNotificationEnabled() && !$this->
user->isAnonymous(),
5861 'draft_id' => $draft_id
5865 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5866 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5868 $jsTpl =
new ilTemplate(
'tpl.forum_post_quoation_ajax_handler.js',
true,
true,
'Modules/Forum');
5869 $jsTpl->setVariable(
5870 'IL_FRM_QUOTE_CALLBACK_SRC',
5871 $this->
ctrl->getLinkTarget($this,
'getQuotationHTMLAsynch',
'',
true)
5873 $this->
ctrl->clearParameters($this);
5874 $this->tpl->addOnLoadCode($jsTpl->get());
5878 $this->
ctrl->setParameter($this,
'pos_pk', $this->objCurrentPost->getId());
5879 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentPost->getThreadId());
5880 $this->
ctrl->setParameter($this,
'page', (
int) ($this->httpRequest->getQueryParams()[
'page'] ?? 0));
5881 $this->
ctrl->setParameter(
5886 $this->
ctrl->setParameter(
5891 if ($action !==
'editdraft') {
5892 $tpl->
setVariable(
'FORM', $oEditReplyForm->getHTML());
5894 $this->
ctrl->clearParameters($this);
5899 $this->
ctrl->setParameter($this,
'thr_pk', $this->objCurrentTopic->getId());
5902 $this->uiFactory->button()->standard(
5903 $this->
lng->txt(
'reset_limited_view_button'),
5904 $this->
ctrl->getLinkTarget($this,
'resetLimitedView')
5908 return $this->uiRenderer->render(
5911 ->
info($this->
lng->txt(
'reset_limited_view_info'))
5912 ->withButtons($buttons)
5919 if ($this->
http->wrapper()->query()->has(
'orderby')) {
5920 $order_by = $this->
http->wrapper()->query()->retrieve(
5922 $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.
Class ilForumStatisticsTableGUI.
static _getRTEClassname()
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)
ILIAS HTTP Services $http
static get(string $a_var)
initEditCustomForm(ilPropertyFormGUI $a_form)
An entity that renders components to a string output.
performMergeThreadsObject()
setPostSubject(string $post_subject)
getThreadEditingForm(int $a_thread_id)
ilObjectDataCache $ilObjDataCache
getQuotationHTMLAsynchObject()
bool $display_confirm_post_activation
Class Forum core functions for forum.
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 file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
static get(string $a_glyph, string $a_text="")
GUI class for the workflow of copying objects.
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()
Class ChatMainBarProvider .
static _setRichTextEditorUserState(int $a_state)
Sets the state of the rich text editor visibility for the current user.
doHistoryCheck(int $draftId)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static _getAllReferences(int $id)
get all reference ids for object ID
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
editThreadObject(int $threadId, ilPropertyFormGUI $form=null)
static initJS(ilGlobalTemplateInterface $a_main_tpl=null)
ILIAS Style Content GUIService $content_style_gui
getSubTabs($subtab='showThreads')
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
ilForumTopic $objCurrentTopic
static lookupTitle(int $a_topic_id)
Class ilForumSaveAsyncDraftAction.
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
Class ilForumDraftsTableGUI.
publishThreadDraftObject()
setRepositoryMode(bool $a_repositorymode)
static lookupAutosaveInterval()
saveThreadSortingObject()
Class ilForumSettingsGUI.
ensureValidPageForCurrentPosting(array $subtree_nodes, array $pagedPostings, int $pageSize, ilForumPost $firstForumPost)
This class handles all operations on files for the drafts of a forum object.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
isOwner(int $a_user_id=0)
unlinkFilesByMD5Filenames($hashedFilenameOrFilenames)
initHeaderAction(?string $sub_type=null, ?int $sub_id=null)
renderSplitButton(ilTemplate $tpl, string $action, bool $is_post, ilForumPost $node, int $pageIndex=0, ilForumPostDraft $draft=null)
static checkAccess(int $a_ref_id, bool $a_allow_only_read=true)
check access to learning progress
static lookupForumIdByRefId(int $ref_id)
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()
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)
static getInstance(int $a_obj_id=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteSelectedDraft(ilForumPostDraft $draft_obj=null)
getCenterColumnHTML()
Get center column.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
publishDraftObject(bool $use_replyform=true)
afterSave(ilObject $new_object)
ilForumPost $objCurrentPost
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
Class ilForumModeratorsGUI.
handleFormInput(string $a_text, bool $a_stripslashes=true)
performThreadsActionObject()
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)
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.
handleCensorship($wasRevoked=false)
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
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
__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 _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...
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
static getSyntaxStylePath()
deleteThreadDraftsObject()
performDeleteThreadsObject()
ILIAS Style Content Object ObjectFacade $content_style_domain
Navigation History of Repository Items.
createTopLevelPostObject()
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
toggleThreadNotificationObject()
isUserAllowedToDeactivateNotification()
static isSavePostDraftAllowed()
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
deliverDraftZipFileObject()
updateThreadDraftObject()
displayConfirmPostActivation()
const FORUM_OVERVIEW_WITH_NEW_POSTS
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteMobsOfDraft(int $draft_id, string $message)
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
editThreadDraftObject(ilPropertyFormGUI $form=null)
__construct(Container $dic, ilPlugin $plugin)
autosaveThreadDraftAsyncObject()
createEmptyThread(ilForumPostDraft $draft, bool $createFromDraft=false)
Refactored thread creation to method, refactoring to a separate class should be done in next refactor...
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.
static _getRichTextEditorUserState()
Gets the state of the rich text editor visibility for the current user.
const LP_CONTEXT_REPOSITORY
This class represents a text area property in a property form.
const PRESENTATION_MODE_PRESENTATION
presentation mode for requesting
This class handles all operations on files for the forum object.
confirmDeleteThreadDraftsObject()
publishSelectedDraftObject()
storeUploadedFile(array $files)
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)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
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.
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
static newInstanceByDraftId(int $draft_id)
static getDraftInstancesByUserId(int $user_id)
getUnsafeGetCommands()
This method must return a list of unsafe GET commands.
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.
Interface ilCtrlSecurityInterface provides ilCtrl security information.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static set(string $a_var, $a_val)
Set a value.
Class FlySystemFileAccessTest disabled disabled disabled.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
checkDraftAccess(int $draftId)
performPostActivationObject()
storeUploadedFile(array $files)
toggleExplorerNodeStateObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...