|
ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
|
Inheritance diagram for League\Flysystem\ReadInterface:
Collaboration diagram for League\Flysystem\ReadInterface:Public Member Functions | |
| has ($path) | |
| Check whether a file exists. More... | |
| read ($path) | |
| Read a file. More... | |
| readStream ($path) | |
| Read a file as a stream. More... | |
| listContents ($directory='', $recursive=false) | |
| List contents of a directory. More... | |
| getMetadata ($path) | |
| Get all the meta data of a file or directory. More... | |
| getSize ($path) | |
| Get the size of a file. More... | |
| getMimetype ($path) | |
| Get the mimetype of a file. More... | |
| getTimestamp ($path) | |
| Get the timestamp of a file. More... | |
| getVisibility ($path) | |
| Get the visibility of a file. More... | |
Definition at line 5 of file ReadInterface.php.
| League\Flysystem\ReadInterface::getMetadata | ( | $path | ) |
Get all the meta data of a file or directory.
| string | $path |
Implemented in League\Flysystem\Adapter\Ftp, League\Flysystem\Adapter\Ftpd, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
Referenced by League\Flysystem\Adapter\AbstractFtpAdapter\getSize(), League\Flysystem\Adapter\AbstractFtpAdapter\getVisibility(), and League\Flysystem\Adapter\AbstractFtpAdapter\has().
Here is the caller graph for this function:| League\Flysystem\ReadInterface::getMimetype | ( | $path | ) |
Get the mimetype of a file.
| string | $path |
Implemented in League\Flysystem\Adapter\Ftp, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
| League\Flysystem\ReadInterface::getSize | ( | $path | ) |
Get the size of a file.
| string | $path |
Implemented in League\Flysystem\Adapter\AbstractFtpAdapter, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
| League\Flysystem\ReadInterface::getTimestamp | ( | $path | ) |
Get the timestamp of a file.
| string | $path |
Implemented in League\Flysystem\Adapter\Ftp, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
| League\Flysystem\ReadInterface::getVisibility | ( | $path | ) |
Get the visibility of a file.
| string | $path |
Implemented in League\Flysystem\Adapter\AbstractFtpAdapter, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
| League\Flysystem\ReadInterface::has | ( | $path | ) |
Check whether a file exists.
| string | $path |
Implemented in League\Flysystem\Adapter\AbstractFtpAdapter, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
| League\Flysystem\ReadInterface::listContents | ( | $directory = '', |
|
$recursive = false |
|||
| ) |
List contents of a directory.
| string | $directory | |
| bool | $recursive |
Implemented in League\Flysystem\Adapter\AbstractFtpAdapter, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
| League\Flysystem\ReadInterface::read | ( | $path | ) |
Read a file.
| string | $path |
Implemented in League\Flysystem\Adapter\Ftp, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
| League\Flysystem\ReadInterface::readStream | ( | $path | ) |
Read a file as a stream.
| string | $path |
Implemented in League\Flysystem\Adapter\Ftp, and League\Flysystem\Adapter\Local.