|
ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
|
Inheritance diagram for League\Flysystem\Adapter\AbstractAdapter:
Collaboration diagram for League\Flysystem\Adapter\AbstractAdapter:Public Member Functions | |
| setPathPrefix ($prefix) | |
| Set the path prefix. More... | |
| getPathPrefix () | |
| Get the path prefix. More... | |
| applyPathPrefix ($path) | |
| Prefix a path. More... | |
| removePathPrefix ($path) | |
| Remove a path prefix. More... | |
Public Member Functions inherited from League\Flysystem\AdapterInterface | |
| write ($path, $contents, Config $config) | |
| Write a new file. More... | |
| writeStream ($path, $resource, Config $config) | |
| Write a new file using a stream. More... | |
| update ($path, $contents, Config $config) | |
| Update a file. More... | |
| updateStream ($path, $resource, Config $config) | |
| Update a file using a stream. More... | |
| rename ($path, $newpath) | |
| Rename a file. More... | |
| copy ($path, $newpath) | |
| Copy a file. More... | |
| delete ($path) | |
| Delete a file. More... | |
| deleteDir ($dirname) | |
| Delete a directory. More... | |
| createDir ($dirname, Config $config) | |
| Create a directory. More... | |
| setVisibility ($path, $visibility) | |
| Set the visibility for a file. More... | |
Public Member Functions inherited from League\Flysystem\ReadInterface | |
| 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... | |
Protected Attributes | |
| $pathPrefix | |
| $pathSeparator = '/' | |
Additional Inherited Members | |
Data Fields inherited from League\Flysystem\AdapterInterface | |
| const | VISIBILITY_PUBLIC = 'public' |
| @const VISIBILITY_PUBLIC public visibility More... | |
| const | VISIBILITY_PRIVATE = 'private' |
| @const VISIBILITY_PRIVATE private visibility More... | |
Definition at line 7 of file AbstractAdapter.php.
| League\Flysystem\Adapter\AbstractAdapter::applyPathPrefix | ( | $path | ) |
Prefix a path.
| string | $path |
Definition at line 55 of file AbstractAdapter.php.
References $path, and League\Flysystem\Adapter\AbstractAdapter\getPathPrefix().
Referenced by League\Flysystem\Adapter\Local\copy(), League\Flysystem\Adapter\Local\createDir(), League\Flysystem\Adapter\Local\delete(), League\Flysystem\Adapter\Local\getMetadata(), League\Flysystem\Adapter\Local\getMimetype(), League\Flysystem\Adapter\Local\getVisibility(), League\Flysystem\Adapter\Local\has(), League\Flysystem\Adapter\Local\listContents(), League\Flysystem\Adapter\Local\read(), League\Flysystem\Adapter\Local\readStream(), League\Flysystem\Adapter\Local\rename(), League\Flysystem\Adapter\Local\setVisibility(), League\Flysystem\Adapter\Local\update(), League\Flysystem\Adapter\Local\write(), and League\Flysystem\Adapter\Local\writeStream().
Here is the call graph for this function:
Here is the caller graph for this function:| League\Flysystem\Adapter\AbstractAdapter::getPathPrefix | ( | ) |
Get the path prefix.
Definition at line 43 of file AbstractAdapter.php.
References League\Flysystem\Adapter\AbstractAdapter\$pathPrefix.
Referenced by League\Flysystem\Adapter\AbstractAdapter\applyPathPrefix(), and League\Flysystem\Adapter\AbstractAdapter\removePathPrefix().
Here is the caller graph for this function:| League\Flysystem\Adapter\AbstractAdapter::removePathPrefix | ( | $path | ) |
Remove a path prefix.
| string | $path |
Definition at line 67 of file AbstractAdapter.php.
References $path, and League\Flysystem\Adapter\AbstractAdapter\getPathPrefix().
Referenced by League\Flysystem\Adapter\Local\getFilePath().
Here is the call graph for this function:
Here is the caller graph for this function:| League\Flysystem\Adapter\AbstractAdapter::setPathPrefix | ( | $prefix | ) |
Set the path prefix.
| string | $prefix |
Definition at line 26 of file AbstractAdapter.php.
References League\Flysystem\Adapter\AbstractAdapter\$pathSeparator.
Referenced by League\Flysystem\Adapter\Local\__construct().
Here is the caller graph for this function:
|
protected |
Definition at line 12 of file AbstractAdapter.php.
Referenced by League\Flysystem\Adapter\AbstractAdapter\getPathPrefix().
|
protected |
Definition at line 17 of file AbstractAdapter.php.
Referenced by League\Flysystem\Adapter\AbstractAdapter\setPathPrefix().