public function PublicStream::getExternalUrl

public PublicStream::getExternalUrl()

Returns a web accessible URL for the resource.

This function should return a URL that can be embedded in a web page and accessed from a browser. For example, the external URL of "youtube://xIpLd0WQKCY" might be "http://www.youtube.com/watch?v=xIpLd0WQKCY".

Return value

string Returns a string containing a web accessible URL for the resource.

Overrides StreamWrapperInterface::getExternalUrl

File

core/lib/Drupal/Core/StreamWrapper/PublicStream.php, line 49

Class

PublicStream
Defines a Drupal public (public://) stream wrapper class.

Namespace

Drupal\Core\StreamWrapper

Code

public function getExternalUrl() {
  $path = str_replace('\\', '/', $this->getTarget());
  return static::baseUrl() . '/' . UrlHelper::encodePath($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/core!lib!Drupal!Core!StreamWrapper!PublicStream.php/function/PublicStream::getExternalUrl/8.1.x