function TemporaryStream::getExternalUrl
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/StreamWrapper/TemporaryStream.php \Drupal\Core\StreamWrapper\TemporaryStream::getExternalUrl()
- 8.9.x core/lib/Drupal/Core/StreamWrapper/TemporaryStream.php \Drupal\Core\StreamWrapper\TemporaryStream::getExternalUrl()
- 11.x core/lib/Drupal/Core/StreamWrapper/TemporaryStream.php \Drupal\Core\StreamWrapper\TemporaryStream::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://random_string" might be "http://www.youtube.com/watch?v=random_string".
Return value
string Returns a string containing a web accessible URL for the resource.
Overrides StreamWrapperInterface::getExternalUrl
File
-
core/
lib/ Drupal/ Core/ StreamWrapper/ TemporaryStream.php, line 46
Class
- TemporaryStream
- Defines a Drupal temporary (temporary://) stream wrapper class.
Namespace
Drupal\Core\StreamWrapperCode
public function getExternalUrl() {
$path = str_replace('\\', '/', $this->getTarget());
return Url::fromRoute('system.temporary', [], [
'absolute' => TRUE,
'query' => [
'file' => $path,
],
])->toString();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.