function 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().

Archivo

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

Class

DrupalLocalStreamWrapper
Drupal stream wrapper base class for local files.

Código

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