ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
|
Public Member Functions | |
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... | |
Data Fields | |
const | VISIBILITY_PUBLIC = 'public' |
VISIBILITY_PUBLIC public visibility More... | |
const | VISIBILITY_PRIVATE = 'private' |
VISIBILITY_PRIVATE private visibility More... | |
Definition at line 5 of file AdapterInterface.php.
League\Flysystem\AdapterInterface::copy | ( | $path, | |
$newpath | |||
) |
Copy a file.
string | $path | |
string | $newpath |
Implemented in League\Flysystem\Adapter\Local.
League\Flysystem\AdapterInterface::createDir | ( | $dirname, | |
Config | $config | ||
) |
Create a directory.
string | $dirname | directory name |
Config | $config |
Implemented in League\Flysystem\Adapter\Local, League\Flysystem\Adapter\Ftp, and League\Flysystem\Adapter\NullAdapter.
Referenced by League\Flysystem\Adapter\AbstractFtpAdapter\ensureDirectory().
League\Flysystem\AdapterInterface::delete | ( | $path | ) |
Delete a file.
string | $path |
Implemented in League\Flysystem\Adapter\Ftp, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
League\Flysystem\AdapterInterface::deleteDir | ( | $dirname | ) |
Delete a directory.
string | $dirname |
Implemented in League\Flysystem\Adapter\Ftp, and League\Flysystem\Adapter\NullAdapter.
Referenced by League\Flysystem\Adapter\Local\createDir().
League\Flysystem\AdapterInterface::rename | ( | $path, | |
$newpath | |||
) |
Rename a file.
string | $path | |
string | $newpath |
Implemented in League\Flysystem\Adapter\Ftp, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
League\Flysystem\AdapterInterface::setVisibility | ( | $path, | |
$visibility | |||
) |
Set the visibility for a file.
string | $path | |
string | $visibility |
Implemented in League\Flysystem\Adapter\Ftp, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
League\Flysystem\AdapterInterface::update | ( | $path, | |
$contents, | |||
Config | $config | ||
) |
Update a file.
Implemented in League\Flysystem\Adapter\Ftp, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
League\Flysystem\AdapterInterface::updateStream | ( | $path, | |
$resource, | |||
Config | $config | ||
) |
Update a file using a stream.
Implemented in League\Flysystem\Adapter\Ftp, and League\Flysystem\Adapter\Local.
League\Flysystem\AdapterInterface::write | ( | $path, | |
$contents, | |||
Config | $config | ||
) |
Write a new file.
Implemented in League\Flysystem\Adapter\Ftp, League\Flysystem\Adapter\Local, and League\Flysystem\Adapter\NullAdapter.
League\Flysystem\AdapterInterface::writeStream | ( | $path, | |
$resource, | |||
Config | $config | ||
) |
Write a new file using a stream.
Implemented in League\Flysystem\Adapter\Ftp, and League\Flysystem\Adapter\Local.
const League\Flysystem\AdapterInterface::VISIBILITY_PRIVATE = 'private' |
VISIBILITY_PRIVATE private visibility
Definition at line 15 of file AdapterInterface.php.
Referenced by League\Flysystem\Adapter\Local\getVisibility(), and League\Flysystem\Adapter\AbstractFtpAdapter\normalizeUnixObject().
const League\Flysystem\AdapterInterface::VISIBILITY_PUBLIC = 'public' |
VISIBILITY_PUBLIC public visibility
Definition at line 10 of file AdapterInterface.php.
Referenced by League\Flysystem\Adapter\Local\getVisibility(), League\Flysystem\Adapter\AbstractFtpAdapter\normalizeUnixObject(), League\Flysystem\Adapter\AbstractFtpAdapter\normalizeWindowsObject(), and League\Flysystem\Adapter\Ftp\setVisibility().