You are here

public function S3fsStreamWrapper::chmod in S3 File System 7.3

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

This wrapper doesn't support file permissions.

Parameters

int $mode: The file's desired permissions in octal. Consult PHP chmod() documentation for more information.

Return value

bool Always returns TRUE.

Overrides DrupalStreamWrapperInterface::chmod

File

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

Class

S3fsStreamWrapper
The stream wrapper class.

Code

public function chmod($mode) {
  $octal_mode = decoct($mode);
  return TRUE;
}