19 declare(strict_types=1);
48 public function copy(
int $targetObjId): void
59 '/(' . $this->config->getSubDirectoryPrefix() .
')(\d*)\/(.*)$/',
60 '${1}' . $targetObjId .
'/${3}',
71 public function delete():
void 73 if ($this->
filesystem->hasDir($this->getIconDirectory())) {
88 return $this->config->getSupportedFileExtensions();
101 $this->
filesystem->copy($sourceFilePath, $fileName);
117 $this->
filesystem->setVisibility($relative_path,
'public');
120 foreach ($this->config->getUploadPostProcessors() as $processor) {
121 $processor->process($relative_path);
127 public function saveFromHttpRequest():
void 137 if ($this->
upload->hasUploads() && !$this->
upload->hasBeenProcessed()) {
141 $result = array_values($this->
upload->getResults())[0];
142 if ($result->isOK()) {
143 $this->
upload->moveOneFileTo(
152 foreach ($this->config->getUploadPostProcessors() as $processor) {
153 $processor->process($fileName);
169 public function remove():
void 187 if (!$this->
filesystem->has(dirname($iconDirectory))) {
188 $this->
filesystem->createDir(dirname($iconDirectory));
191 if (!$this->
filesystem->has($iconDirectory)) {
198 return implode(DIRECTORY_SEPARATOR, [
199 $this->config->getBaseDirectory(),
200 $this->config->getSubDirectoryPrefix() . $this->
getObjId()
206 return self::ICON_BASENAME .
'.' . $this->config->getTargetFileExtension();
211 return implode(DIRECTORY_SEPARATOR, [
229 return implode(DIRECTORY_SEPARATOR, [
237 $target_dir = implode(DIRECTORY_SEPARATOR, [
static getWebspaceDir(string $mode="filesystem")
get webspace directory
Class ilObjectCustomIconImpl TODO: Inject database persistence in future instead of using ...
saveFromSourceFile(string $sourceFilePath)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static rCopy(string $a_sdir, string $a_tdir, bool $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
createCustomIconDirectory()
saveFromTempFileName(string $tempfile_name)
getSupportedFileExtensions()
static getDataDir()
get data directory (outside webspace)
createFromImportDir(string $source_dir)
static _writeContainerSetting(int $a_id, string $a_keyword, string $a_value)
persistIconState(string $fileName)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
__construct(protected Filesystem $filesystem, protected FileUpload $upload, protected ilObjectCustomIconConfiguration $config, protected int $objId)
static _deleteContainerSettings(int $a_id, string $a_keyword="", bool $a_keyword_like=false)