You are here

public function S3fsStreamWrapper::getUri in S3 File System 7

Same name and namespace in other branches
  1. 7.3 S3fsStreamWrapper.inc \S3fsStreamWrapper::getUri()
  2. 7.2 S3fsStreamWrapper.inc \S3fsStreamWrapper::getUri()

Returns the stream resource URI. URIs are formatted as "s3://key".

Return value

string Returns the current URI of the instance.

Overrides DrupalStreamWrapperInterface::getUri

File

./S3fsStreamWrapper.inc, line 287
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;
}