function DrupalLocalStreamWrapper::realpath

7.x stream_wrappers.inc DrupalLocalStreamWrapper::realpath()

Base implementation of realpath().

Overrides DrupalStreamWrapperInterface::realpath

1 method overrides DrupalLocalStreamWrapper::realpath()
DrupalDummyRemoteStreamWrapper::realpath in drupal-7.x/modules/simpletest/tests/file_test.module
Base implementation of realpath().

File

drupal-7.x/includes/stream_wrappers.inc, line 354
Drupal stream wrapper interface.

Class

DrupalLocalStreamWrapper
Drupal stream wrapper base class for local files.

Code

function realpath() {
  return $this->getLocalPath();
}