ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilImportDirectory.php
Go to the documentation of this file.
1 <?php
19 
21 {
22  private const PATH_UPLOAD_PREFIX = 'upload';
23  private string $relative_path;
24 
25  protected Filesystem $storage;
26  protected ilLogger $logger;
27 
28  public function __construct(Filesystem $storage, ilLogger $logger)
29  {
30  $this->storage = $storage;
31  $this->logger = $logger;
32  $this->init();
33  }
34 
35  public function getRelativePath(): string
36  {
37  return $this->relative_path;
38  }
39 
43  public function exists(): bool
44  {
45  return $this->storage->hasDir($this->relative_path);
46  }
47 
51  public function getAbsolutePath(): string
52  {
53  if (!$this->exists()) {
54  return '';
55  }
57  }
58 
59  abstract protected function getPathPrefix(): string;
60 
61  private function init(): void
62  {
63  $this->relative_path = self::PATH_UPLOAD_PREFIX . '/' . $this->getPathPrefix();
64  }
65 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Filesystem $storage, ilLogger $logger)
static getDataDir()
get data directory (outside webspace)