function PrivateStream::getExternalUrl
Same name in other branches
- 9 core/lib/Drupal/Core/StreamWrapper/PrivateStream.php \Drupal\Core\StreamWrapper\PrivateStream::getExternalUrl()
- 10 core/lib/Drupal/Core/StreamWrapper/PrivateStream.php \Drupal\Core\StreamWrapper\PrivateStream::getExternalUrl()
- 11.x core/lib/Drupal/Core/StreamWrapper/PrivateStream.php \Drupal\Core\StreamWrapper\PrivateStream::getExternalUrl()
Overrides StreamWrapperInterface::getExternalUrl
File
-
core/
lib/ Drupal/ Core/ StreamWrapper/ PrivateStream.php, line 47
Class
- PrivateStream
- Drupal private (private://) stream wrapper class.
Namespace
Drupal\Core\StreamWrapperCode
public function getExternalUrl() {
$path = str_replace('\\', '/', $this->getTarget());
return Url::fromRoute('system.private_file_download', [
'filepath' => $path,
], [
'absolute' => TRUE,
'path_processing' => FALSE,
])->toString();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.