You are here

function DrupalRemoteStreamWrapper::chmod in Remote Stream Wrapper 7

Implements chmod().

Returns a TRUE result since this is a read-only stream wrapper.

Overrides DrupalStreamWrapperInterface::chmod

File

./remote_stream_wrapper.inc, line 105

Class

DrupalRemoteStreamWrapper
Stream wrapper to support local files.

Code

function chmod($mode) {
  return TRUE;
}