public function S3fsStreamWrapper::getDirectoryPath in S3 File System 7
Same name and namespace in other branches
- 7.3 S3fsStreamWrapper.inc \S3fsStreamWrapper::getDirectoryPath()
 - 7.2 S3fsStreamWrapper.inc \S3fsStreamWrapper::getDirectoryPath()
 
Gets the path that the wrapper is responsible for.
Return value
string The empty string. Since this is a remote stream wrapper, it has no directory path.
File
- ./
S3fsStreamWrapper.inc, line 443  - Drupal stream wrapper implementation for S3 File System.
 
Class
- S3fsStreamWrapper
 - The stream wrapper class.
 
Code
public function getDirectoryPath() {
  $this
    ->_debug("getDirectoryPath() called.");
  return '';
}