You are here

public function S3fsStreamWrapper::realpath in S3 File System 7.2

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

This wrapper does not support realpath().

Return value

bool Always returns FALSE.

Overrides DrupalStreamWrapperInterface::realpath

File

./S3fsStreamWrapper.inc, line 548
Drupal stream wrapper implementation for S3 File System.

Class

S3fsStreamWrapper
The stream wrapper class.

Code

public function realpath() {
  $this
    ->_debug("realpath() called for {$this->uri}. S3fsStreamWrapper does not support this function.");
  return FALSE;
}