public function S3fsStreamWrapper::getUri in S3 File System 7.2
Same name and namespace in other branches
- 7.3 S3fsStreamWrapper.inc \S3fsStreamWrapper::getUri()
- 7 S3fsStreamWrapper.inc \S3fsStreamWrapper::getUri()
Returns the stream resource URI, which looks like "<scheme>://filepath".
Return value
string The current URI of the instance.
Overrides DrupalStreamWrapperInterface::getUri
File
- ./
S3fsStreamWrapper.inc, line 293 - Drupal stream wrapper implementation for S3 File System.
Class
- S3fsStreamWrapper
- The stream wrapper class.
Code
public function getUri() {
$this
->_debug("getUri() called for {$this->uri}.");
return $this->uri;
}