24 private \ILIAS\FileUpload\FileUpload
$upload;
30 $this->
upload = $DIC->upload();
44 $has_record_id = $this->
http->wrapper()->query()->has(
'record_id');
45 $is_confirmed = $this->
http->wrapper()->post()->has(
'save_confirmed');
46 $has_save_confirmation = ($this->
getRecord()->getTable()->getSaveConfirmation() && !$has_record_id);
50 && isset($file[
'tmp_name'])
51 && $file[
'tmp_name'] !==
"" 52 && (!$has_save_confirmation || $is_confirmed)
54 if ($has_save_confirmation) {
55 $ilfilehash = $this->
http->wrapper()->post()->retrieve(
57 $this->
refinery->kindlyTo()->string()
69 $move_file = $file[
'tmp_name'];
71 if (
false === $this->
upload->hasBeenProcessed()) {
75 if (
false === $this->
upload->hasUploads()) {
76 throw new ilException($this->
lng->txt(
'upload_error_file_not_found'));
79 $file_stream = Streams::ofResource(fopen($move_file,
'rb'));
82 $file_title = $file[
"name"] ?? basename($move_file);
85 $file_obj->setType(
"file");
86 $file_obj->setTitle($file_title);
87 $file_obj->setFileName($file_title);
91 $file_obj->appendStream($file_stream, $file_title);
92 $file_obj->setTitle($file_title);
93 $file_obj->setFileName($file_title);
97 $file_id = $file_obj->getId();
101 if (is_array($file) && isset($file[
'tmp_name']) && $file[
'tmp_name'] !=
"") {
129 if (!$omit_parsing) {
133 if ($tmp !==
false) {
136 if ($old && $old != $tmp) {
157 $file_name = $file_obj->getFileName();
176 return $file_obj->getTitle();
185 if ($form->
getItemByPostVar(
"field_" . $this->getField()->getId())->getDeletionFlag()) {
200 if (!$record_field || !$record_field->getValue()) {
204 $file_old =
new ilObjFile($record_field->getValue(),
false);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
parseSortingValue($value, bool $link=true)
Returns sortable value for the specific field-types.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setValueFromForm(ilPropertyFormGUI $form)
ILIAS FileUpload FileUpload $upload
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addHiddenItem(string $a_post_var, string $a_value)
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
static ofResource($resource)
Wraps an already created resource with the stream abstraction.
static http()
Fetches the global http state from ILIAS.
__construct(ilDclBaseRecordModel $record, ilDclBaseFieldModel $field)
doUpdate()
Update object in database.
setValue($value, bool $omit_parsing=false)
Set value for record field.
loadValue()
Load the value.
cloneObject(int $target_id, int $copy_id=0, bool $omit_tree=false)
ilDclBaseFieldModel $field
__construct(Container $dic, ilPlugin $plugin)
static getCloneOf(int $id, string $type)
static getRecordFieldCache(object $record, object $field)
ilDclBaseRecordModel $record
addHiddenItemsToConfirmation(ilConfirmationGUI $confirmation)
static _lookupType(int $id, bool $reference=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...