You are here

public function S3fsStreamWrapper::stream_metadata in S3 File System 7.2

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

This wrapper does not support touch(), chmod(), chown(), or chgrp().

Return value

bool Always Returns FALSE.

See also

http://php.net/manual/en/streamwrapper.stream-metadata.php

File

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

Class

S3fsStreamWrapper
The stream wrapper class.

Code

public function stream_metadata($path, $option, $value) {
  $this
    ->_debug("stream_metadata({$path}, {$option}, {$value}) called. S3fsStreamWrapper doesn't support this function.");
  return FALSE;
}