function DrupalPublicStreamWrapper::getExternalUrl
Overrides getExternalUrl().
Return the HTML URI of a public file.
Return value
Returns a string containing a web accessible URL for the resource.
Overrides DrupalStreamWrapperInterface::getExternalUrl
File
- 
              includes/stream_wrappers.inc, line 933 
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);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
