Searched refs:flySystemFS (Results 1 – 6 of 6) sorted by relevance
/dports/www/ilias6/ILIAS-6.14/src/Filesystem/Provider/FlySystem/ |
H A D | FlySystemFileAccess.php | 30 private $flySystemFS; variable in ILIAS\\Filesystem\\Provider\\FlySystem\\FlySystemFileAccess 38 public function __construct(FilesystemInterface $flySystemFS) argument 40 $this->flySystemFS = $flySystemFS; 60 $result = $this->flySystemFS->read($path); 85 return $this->flySystemFS->has($path); 102 $mimeType = $this->flySystemFS->getMimetype($path); 130 $rawTimestamp = $this->flySystemFS->getTimestamp($path); 166 $byteSize = $this->flySystemFS->getSize($path); 250 $visibility = $this->flySystemFS->getVisibility($path); 328 if ($this->flySystemFS->put($path, $content) === false) { [all …]
|
H A D | FlySystemFileStreamAccess.php | 30 private $flySystemFS; variable in ILIAS\\Filesystem\\Provider\\FlySystem\\FlySystemFileStreamAccess 35 * @param FilesystemInterface $flySystemFS A configured fly system filesystem instance. 37 public function __construct(FilesystemInterface $flySystemFS) argument 39 $this->flySystemFS = $flySystemFS; 61 $resource = $this->flySystemFS->readStream($path); 100 $result = $this->flySystemFS->writeStream($path, $resource); 140 $result = $this->flySystemFS->putStream($path, $resource); 177 $result = $this->flySystemFS->updateStream($path, $resource);
|
H A D | FlySystemDirectoryAccess.php | 30 private $flySystemFS; variable in ILIAS\\Filesystem\\Provider\\FlySystem\\FlySystemDirectoryAccess 42 * @param FilesystemInterface $flySystemFS A configured fly system filesystem instance. 45 public function __construct(FilesystemInterface $flySystemFS, FlySystemFileAccess $fileAccess) argument 47 $this->flySystemFS = $flySystemFS; 66 if ($this->flySystemFS->has($path)) { 67 $meta = $this->flySystemFS->getMetadata($path); 100 $contents = $this->flySystemFS->listContents($path, $recursive); 137 $successful = $this->flySystemFS->createDir($path, $config); 240 if ($this->flySystemFS->deleteDir($path) === false) {
|
/dports/www/ilias/ILIAS-5.4.25/src/Filesystem/Provider/FlySystem/ |
H A D | FlySystemFileAccess.php | 30 private $flySystemFS; variable in ILIAS\\Filesystem\\Provider\\FlySystem\\FlySystemFileAccess 38 public function __construct(FilesystemInterface $flySystemFS) argument 40 $this->flySystemFS = $flySystemFS; 60 $result = $this->flySystemFS->read($path); 85 return $this->flySystemFS->has($path); 102 $mimeType = $this->flySystemFS->getMimetype($path); 130 $rawTimestamp = $this->flySystemFS->getTimestamp($path); 166 $byteSize = $this->flySystemFS->getSize($path); 250 $visibility = $this->flySystemFS->getVisibility($path); 328 if ($this->flySystemFS->put($path, $content) === false) { [all …]
|
H A D | FlySystemFileStreamAccess.php | 30 private $flySystemFS; variable in ILIAS\\Filesystem\\Provider\\FlySystem\\FlySystemFileStreamAccess 35 * @param FilesystemInterface $flySystemFS A configured fly system filesystem instance. 37 public function __construct(FilesystemInterface $flySystemFS) argument 39 $this->flySystemFS = $flySystemFS; 61 $resource = $this->flySystemFS->readStream($path); 100 $result = $this->flySystemFS->writeStream($path, $resource); 140 $result = $this->flySystemFS->putStream($path, $resource); 177 $result = $this->flySystemFS->updateStream($path, $resource);
|
H A D | FlySystemDirectoryAccess.php | 30 private $flySystemFS; variable in ILIAS\\Filesystem\\Provider\\FlySystem\\FlySystemDirectoryAccess 42 * @param FilesystemInterface $flySystemFS A configured fly system filesystem instance. 45 public function __construct(FilesystemInterface $flySystemFS, FlySystemFileAccess $fileAccess) argument 47 $this->flySystemFS = $flySystemFS; 66 if ($this->flySystemFS->has($path)) { 67 $meta = $this->flySystemFS->getMetadata($path); 100 $contents = $this->flySystemFS->listContents($path, $recursive); 137 $successful = $this->flySystemFS->createDir($path, $config); 240 if ($this->flySystemFS->deleteDir($path) === false) {
|