function DrupalLocalStreamWrapper::realpath in Drupal 7
Base implementation of realpath().
Overrides DrupalStreamWrapperInterface::realpath
1 method overrides DrupalLocalStreamWrapper::realpath()
- DrupalDummyRemoteStreamWrapper::realpath in modules/
simpletest/ tests/ file_test.module - Base implementation of realpath().
File
- includes/
stream_wrappers.inc, line 353 - Drupal stream wrapper interface.
Class
- DrupalLocalStreamWrapper
- Drupal stream wrapper base class for local files.
Code
function realpath() {
return $this
->getLocalPath();
}