public function S3fsStreamWrapper::url_stat in S3 File System 7.3
Same name and namespace in other branches
- 7 S3fsStreamWrapper.inc \S3fsStreamWrapper::url_stat()
- 7.2 S3fsStreamWrapper.inc \S3fsStreamWrapper::url_stat()
Overrides StreamWrapperInterface::url_stat
File
- ./
S3fsStreamWrapper.inc, line 737 - Drupal stream wrapper implementation for S3 File System.
Class
- S3fsStreamWrapper
- The stream wrapper class.
Code
public function url_stat($uri, $flags) {
$this
->setUri($uri);
return $this
->_stat($uri);
}