19 declare(strict_types=1);
44 bool $allowPseudonyms,
45 bool $allowNotification,
61 if ($this->allowPseudonyms) {
63 $alias->setInfo($this->
lng->txt(
'forums_use_alias'));
64 $alias->setMaxLength(255);
76 $subject->setMaxLength(255);
77 $subject->setSize(50);
78 $subject->setRequired(
true);
94 $message->setRTERootBlockElement(
'');
95 $message->setRTESupport($this->
user->getId(),
'frm~',
'frm_post',
'tpl.tinymce_frm_post.js',
false,
'5.6.0');
118 if ($this->properties->isFileUploadAllowed()) {
123 if ($this->isDraftContext && $this->draftId > 0) {
125 if ($threadDraft->getDraftId() > 0) {
127 if (count($draftFileData->getFilesOfPost()) > 0) {
129 $this->
lng->txt(
'forums_delete_file'),
132 foreach ($draftFileData->getFilesOfPost() as $file) {
135 $this->
addItem($existingFileSelection);
144 if ($this->allowNotification) {
146 $notifyOnAnswer->
setInfo($this->
lng->txt(
'forum_notify_me'));
147 $notifyOnAnswer->setValue(
'1');
148 $this->
addItem($notifyOnAnswer);
156 $this->
setTitle($this->
lng->txt(
'forums_new_thread'));
157 if ($this->isDraftContext) {
158 $this->
setTitle($this->
lng->txt(
'edit_thread_draft'));
161 foreach ($this->input_items as $input_item) {
162 switch ($input_item) {
163 case self::ALIAS_INPUT:
167 case self::SUBJECT_INPUT:
171 case self::MESSAGE_INPUT:
175 case self::FILE_UPLOAD_INPUT:
179 case self::ALLOW_NOTIFICATION_INPUT:
188 $this->input_items[] = $input_item;
196 $this->
ctrl->setParameter($this->delegatingGui,
'draft_id', $this->draftId);
197 if (in_array($this->
ctrl->getCmd(), [
'publishThreadDraft',
'editThreadDraft',
'updateThreadDraft'])) {
200 $this->
setFormAction($this->
ctrl->getFormAction($this->delegatingGui,
'updateThreadDraft'));
204 $this->
setFormAction($this->
ctrl->getFormAction($this->delegatingGui,
'saveThreadAsDraft'));
210 $this->
setFormAction($this->
ctrl->getFormAction($this->delegatingGui,
'addThread'));
220 $this->
setFormAction($this->
ctrl->getFormAction($this->delegatingGui,
'addThread'));
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
This class handles all operations on files for the drafts of a forum object.
static getInstanceByType(string $type)
static isSavePostDraftAllowed()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
static newInstanceByDraftId(int $draft_id)