function DrupalPublicStreamWrapper::getExternalUrl

DrupalPublicStreamWrapper::getExternalUrl()

Overrides getExternalUrl().

Return the HTML URI of a public file.

Overrides DrupalStreamWrapperInterface::getExternalUrl

File

includes/stream_wrappers.inc, line 779
Drupal stream wrapper interface.

Class

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

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!stream_wrappers.inc/function/DrupalPublicStreamWrapper::getExternalUrl/7.x