19 declare(strict_types=1);
31 protected \ILIAS\FileUpload\FileUpload
$upload;
42 $this->
upload = $DIC->upload();
56 return $this->repo->getIdStringForAssId($this->ass_id);
61 $this->repo->createCollection($this->ass_id);
66 $this->repo->importFromLegacyUpload(
75 $this->repo->importFromDirectory(
84 $this->repo->deleteCollection(
92 return $this->repo->getCollection($this->ass_id);
97 if ($this->repo->hasCollection($this->ass_id)) {
104 'fullpath' => $info->
getSrc(),
108 }, iterator_to_array($this->repo->getCollectionResourcesInfo($this->ass_id)));
113 public function deliver(
string $full_path,
string $file): void
115 if ($this->repo->hasCollection($this->ass_id)) {
116 $this->repo->deliverFile($this->ass_id, $file);
123 return $this->repo->getStream($this->ass_id, $rid);
129 $this->repo->clone($this->ass_id, $to_ass_id);
ilExcInstructionFilesStakeholder $stakeholder
__construct(int $ass_id, InstructionFileRepository $repo, \ilExcInstructionFilesStakeholder $stakeholder)
deliver(string $full_path, string $file)
Class ResourceCollection.
importFromDirectory(string $dir)
ILIAS FileUpload FileUpload $upload
Interface ResourceStakeholder.
importFromLegacyUpload(array $file_input)
The base interface for all filesystem streams.
InstructionFileRepository $repo