3 declare(strict_types=1);
46 $this->ilErr = $DIC[
'ilErr'];
47 $this->db = $DIC->database();
48 $this->
lng = $DIC->language();
50 $this->file_id = $a_file_id;
56 $this->file_id = $a_id;
71 $this->event_id = $a_event_id;
76 $this->file_name = $a_name;
86 $this->file_type = $a_type;
96 $this->file_size = $a_size;
106 $this->tmp_name = $a_name;
116 $this->error_code = $a_code;
126 return $this->fss_storage->getAbsolutePath() .
"/" . $this->
getFileId();
132 case UPLOAD_ERR_INI_SIZE:
133 $this->ilErr->appendMessage($this->
lng->txt(
'file_upload_ini_size'));
135 case UPLOAD_ERR_FORM_SIZE:
136 $this->ilErr->appendMessage($this->
lng->txt(
'file_upload_form_size'));
139 case UPLOAD_ERR_PARTIAL:
140 $this->ilErr->appendMessage($this->
lng->txt(
'file_upload_only_partial'));
143 case UPLOAD_ERR_NO_TMP_DIR:
144 $this->ilErr->appendMessage($this->
lng->txt(
'file_upload_no_tmp_dir'));
148 case UPLOAD_ERR_NO_FILE:
159 $file->setSessionId($a_target_event_id);
163 $file->create(
false);
170 public function create(
bool $a_upload =
true): bool
178 $next_id =
$ilDB->nextId(
'event_file');
179 $query =
"INSERT INTO event_file (file_id,event_id,file_name,file_size,file_type) " .
181 $ilDB->quote($next_id,
'integer') .
", " .
192 $this->fss_storage->createDirectory();
199 $this->fss_storage->getAbsolutePath() .
'/' . $this->
getFileId()
206 public function delete():
bool 211 $query =
"DELETE FROM event_file " .
212 "WHERE file_id = " .
$ilDB->quote($this->
getFileId(),
'integer') .
" ";
225 $query =
"DELETE FROM event_file " .
226 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer');
229 #$this->fss_storage->delete(); 237 $ilDB = $DIC->database();
239 $query =
"SELECT * FROM event_file " .
240 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer');
254 if (!$this->file_id) {
259 $query =
"SELECT * FROM event_file WHERE file_id = " .
$ilDB->quote($this->file_id,
'integer');
create(bool $a_upload=true)
ilFSStorageSession $fss_storage
setSessionId(int $a_event_id)
__construct(int $a_file_id=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setErrorCode(int $a_code)
_deleteByEvent(int $a_event_id)
setTemporaryName(string $a_name)
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
setFileName(string $a_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Error Handling & global info handling uses PEAR error class.
static _readFilesByEvent(int $a_event_id)
cloneFiles(int $a_target_event_id)
setFileType(string $a_type)