19 declare(strict_types=1);
32 protected const SIZE =
'size';
33 protected const DATE =
'date';
34 protected const NAME =
'name';
44 $this->amd_record_file_factory =
new ilAMDRecordFileFactory();
46 $this->object_id = $a_obj_id;
55 $elements = is_null($this->object_id)
56 ? $this->amd_record_file_factory->handler()->getGlobalFiles()
57 : $this->amd_record_file_factory->handler()->getFilesByObjectId($this->object_id);
58 foreach ($elements as $element) {
59 $file_id = $element->getIRSS()->getResourceIdSerialized();
60 $file_info[$file_id][self::SIZE] = $element->getIRSS()->getResourceSize();
61 $file_info[$file_id][self::DATE] = $element->getIRSS()->getCreationDate()->getTimestamp();
62 $file_info[$file_id][self::NAME] = $element->getIRSS()->getRecords();
70 $file_name = time() .
'.xml';
71 $stream = Streams::ofString($a_xml);
72 if (is_null($this->object_id)) {
73 $this->amd_record_file_factory->handler()->addGlobalFile(
79 if (!is_null($this->object_id)) {
80 $this->amd_record_file_factory->handler()->addFile(
91 string|
null $filename_overwrite =
null 93 if (is_null($this->object_id)) {
94 $this->amd_record_file_factory->handler()->downloadGlobal(
99 if (!is_null($this->object_id)) {
100 $this->amd_record_file_factory->handler()->download(
112 $global = is_null($this->object_id);
114 $this->amd_record_file_factory->handler()->deleteGlobal(
120 $this->amd_record_file_factory->handler()->delete(
download(string $file_id, string|null $filename_overwrite=null)
__construct(int $user_id, ?ObjectId $a_obj_id=null)
deleteByFileId(int $user_id, string $file_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilAMDRecordFileFactory $amd_record_file_factory