public function DrupalRemoteStreamWrapper::rename in Remote Stream Wrapper 7
Support for rename().
Parameters
$from_uri,: The uri to the file to rename.
$to_uri: The new uri for file.
Return value
TRUE if file was successfully renamed.
Overrides StreamWrapperInterface::rename
See also
http://php.net/manual/en/streamwrapper.rename.php
File
- ./
remote_stream_wrapper.inc, line 331
Class
- DrupalRemoteStreamWrapper
- Stream wrapper to support local files.
Code
public function rename($from_uri, $to_uri) {
return FALSE;
}