public function AmazonS3StreamWrapper::chmod in AmazonS3 7
Changes permissions of the resource.
This doesn't do anything for the moment so just returns TRUE;
Parameters
int $mode: Integer value for the permissions. Consult PHP chmod() documentation for more information.
Return value
bool Returns TRUE.
Overrides DrupalStreamWrapperInterface::chmod
File
- ./
AmazonS3StreamWrapper.inc, line 366 - Drupal stream wrapper implementation for Amazon S3
Class
- AmazonS3StreamWrapper
- @file Drupal stream wrapper implementation for Amazon S3
Code
public function chmod($mode) {
$this
->assertConstructorCalled();
return TRUE;
}