function DrupalPublicStreamWrapper::getExternalUrl

Overrides getExternalUrl().

Return the HTML URI of a public file.

Overrides DrupalStreamWrapperInterface::getExternalUrl

Archivo

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

Class

DrupalPublicStreamWrapper
Drupal public (public://) stream wrapper class.

Código

function getExternalUrl() {
  $path = str_replace('\\', '/', $this->getTarget());
  return $GLOBALS['base_url'] . '/' . self::getDirectoryPath() . '/' . drupal_encode_path($path);
}