public function PrivateStream::getExternalUrl in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/StreamWrapper/PrivateStream.php \Drupal\Core\StreamWrapper\PrivateStream::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/ PrivateStream.php, line 54 - Contains \Drupal\Core\StreamWrapper\PrivateStream.
Class
- PrivateStream
- Drupal private (private://) stream wrapper class.
Namespace
Drupal\Core\StreamWrapperCode
public function getExternalUrl() {
$path = str_replace('\\', '/', $this
->getTarget());
return $this
->url('system.private_file_download', [
'filepath' => $path,
], [
'absolute' => TRUE,
]);
}