19 declare(strict_types=1);
34 protected \ILIAS\ResourceStorage\Services
$irss;
36 protected \ILIAS\FileUpload\FileUpload
$upload;
43 $this->irss = $DIC->resourceStorage();
44 $this->
upload = $DIC->upload();
52 $has_record_id = $this->
http->wrapper()->query()->has(
'record_id');
53 $is_confirmed = $this->
http->wrapper()->post()->has(
'save_confirmed');
54 $has_save_confirmation = ($this->
getRecord()->getTable()->getSaveConfirmation() && !$has_record_id);
58 && isset($file[self::FILE_TMP_NAME])
59 && $file[self::FILE_TMP_NAME] !==
"" 60 && (!$has_save_confirmation || $is_confirmed)
62 if ($has_save_confirmation) {
63 $ilfilehash = $this->
http->wrapper()->post()->retrieve(
65 $this->
refinery->kindlyTo()->string()
71 $file[self::FILE_NAME],
72 $file[self::FILE_TYPE]
77 $move_file = $file[self::FILE_TMP_NAME];
79 if (
false === $this->
upload->hasBeenProcessed()) {
83 if (
false === $this->
upload->hasUploads()) {
84 throw new ilException($this->
lng->txt(
'upload_error_file_not_found'));
87 $file_stream = Streams::ofResource(fopen($move_file,
'rb'));
90 $file_title = $file[self::FILE_NAME] ?? basename($move_file);
95 is_string($existing_value)
96 && ($rid = $this->irss->manage()->find($existing_value)) !==
null 99 $this->irss->manage()->replaceWithStream(
107 $rid = $this->irss->manage()->stream(
114 return $rid->serialize();
117 if (is_array($file) && isset($file[self::FILE_TMP_NAME]) && $file[self::FILE_TMP_NAME] !=
"") {
126 if ($this->value !==
null && $form->
getItemByPostVar(
"field_" . $this->getField()->getId())->getDeletionFlag()) {
131 parent::setValueFromForm($form);
134 public function delete():
void 136 if ($this->value !==
null) {
144 $this->irss->manage()->remove($this->irss->manage()->find($this->value),
$this->stakeholder);
149 return $this->valueToFileTitle(
$value);
154 return $this->valueToFileTitle(
$value);
163 if (!$record_field->getValue()) {
166 $current = $this->valueToCurrentRevision($record_field->getValue());
167 if ($current !==
null) {
168 $new_rid = $this->irss->manage()->clone($current->getIdentification());
169 $this->
setValue($new_rid->serialize());
setValueFromForm(ilPropertyFormGUI $form)
__construct(ilDclBaseRecordModel $record, ilDclBaseFieldModel $field)
AutoloadingIssuesInspection
setValue($value, bool $omit_parsing=false)
Set value for record field.
getValueForRepresentation()
parseSortingValue($value, bool $link=true)
ILIAS ResourceStorage Services $irss
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static ofResource($resource)
Wraps an already created resource with the stream abstraction.
static http()
Fetches the global http state from ILIAS.
ILIAS FileUpload FileUpload $upload
doUpdate()
Update object in database.
ilDataCollectionStakeholder $stakeholder
ilDclBaseFieldModel $field
__construct(Container $dic, ilPlugin $plugin)
static getCloneOf(int $id, string $type)
static getRecordFieldCache(object $record, object $field)
ilDclBaseRecordModel $record