public function S3fsStreamWrapper::stream_lock in S3 File System 7.2
Same name and namespace in other branches
- 7.3 S3fsStreamWrapper.inc \S3fsStreamWrapper::stream_lock()
- 7 S3fsStreamWrapper.inc \S3fsStreamWrapper::stream_lock()
This wrapper does not support flock().
Return value
bool Always Returns FALSE.
Overrides StreamWrapperInterface::stream_lock
See also
http://php.net/manual/en/streamwrapper.stream-lock.php
File
- ./
S3fsStreamWrapper.inc, line 666 - Drupal stream wrapper implementation for S3 File System.
Class
- S3fsStreamWrapper
- The stream wrapper class.
Code
public function stream_lock($operation) {
$this
->_debug("stream_lock({$operation}) called. S3fsStreamWrapper doesn't support this function.");
return FALSE;
}