91 $this->check_input_called = $status;
99 if ($this->document->getId() > 0) {
100 $this->
setTitle($this->lng->txt(
'acc_form_edit_doc_head'));
102 $this->
setTitle($this->lng->txt(
'acc_form_new_doc_head'));
107 $title =
new ilTextInputGUI($this->lng->txt(
'acc_form_document_title'),
'title');
108 $title->setInfo($this->lng->txt(
'acc_form_document_title_info'));
109 $title->setRequired(
true);
110 $title->setDisabled(!$this->isEditable);
111 $title->setValue($this->document->getTitle());
112 $title->setMaxLength(255);
115 $documentLabel = $this->lng->txt(
'acc_form_document');
116 $documentByline = $this->lng->txt(
'acc_form_document_info');
117 if ($this->document->getId() > 0) {
118 $documentLabel = $this->lng->txt(
'acc_form_document_new');
119 $documentByline = $this->lng->txt(
'acc_form_document_new_info');
124 if (!$this->document->getId()) {
127 $document->setDisabled(!$this->isEditable);
131 if ($this->isEditable) {
143 return strlen($this->translatedError) > 0;
159 return strlen($this->translatedInfo) > 0;
175 if (!$this->fillObject()) {
180 $this->document->save();
188 protected function fillObject() :
bool 194 if ($this->fileUpload->hasUploads() && !$this->fileUpload->hasBeenProcessed()) {
196 $this->fileUpload->process();
199 $uploadResult = array_values($this->fileUpload->getResults())[0];
200 if (!$uploadResult) {
201 $this->
getItemByPostVar(
'document')->setAlert($this->lng->txt(
'form_msg_file_no_upload'));
202 throw new ilException($this->lng->txt(
'form_input_not_valid'));
205 if (!$this->document->getId() || $uploadResult->getName() !==
'') {
206 if ($uploadResult->getStatus()->getCode() != ProcessingStatus::OK) {
207 $this->
getItemByPostVar(
'document')->setAlert($uploadResult->getStatus()->getMessage());
208 throw new ilException($this->lng->txt(
'form_input_not_valid'));
211 $this->fileUpload->moveOneFileTo(
219 $pathToFile =
'/agreements/' . $uploadResult->getName();
220 if (!$this->tmpFileSystem->has($pathToFile)) {
221 $this->
getItemByPostVar(
'document')->setAlert($this->lng->txt(
'form_msg_file_no_upload'));
222 throw new ilException($this->lng->txt(
'form_input_not_valid'));
225 $originalContent = $content = $this->tmpFileSystem->read($pathToFile);
227 $purifiedHtmlContent = $this->documentPurifier->purify($content);
230 if (!$htmlValidator->isValid()) {
231 $purifiedHtmlContent = nl2br($purifiedHtmlContent);
234 if (trim($purifiedHtmlContent) !== trim($originalContent)) {
235 $this->translatedInfo = $this->lng->txt(
'acc_form_document_content_changed');
238 $this->document->setText($purifiedHtmlContent);
239 $this->tmpFileSystem->delete($pathToFile);
242 $this->translatedError = $e->getMessage();
247 $this->document->setTitle($this->
getInput(
'title'));
249 if ($this->document->getId() > 0) {
250 $this->document->setLastModifiedUsrId($this->actor->getId());
252 $this->document->setOwnerUsrId($this->actor->getId());
256 $this->document->setSorting((
int) $documentWithMaxSorting->getSorting() + 1);
258 $this->document->setSorting(1);
Class ilAccessibilityDocument.
Interface for html sanitizing functionality.
Class ilAccessibilityDocumentsContainsHtmlValidator.
__construct(Container $dic, ilPlugin $plugin)
static orderBy($orderBy, $orderDirection='ASC')
Class FlySystemFileAccessTest disabled disabled disabled.