You are here

public function PrivateStream::getExternalUrl in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/StreamWrapper/PrivateStream.php \Drupal\Core\StreamWrapper\PrivateStream::getExternalUrl()
  2. 9 core/lib/Drupal/Core/StreamWrapper/PrivateStream.php \Drupal\Core\StreamWrapper\PrivateStream::getExternalUrl()

File

core/lib/Drupal/Core/StreamWrapper/PrivateStream.php, line 47

Class

PrivateStream
Drupal private (private://) stream wrapper class.

Namespace

Drupal\Core\StreamWrapper

Code

public function getExternalUrl() {
  $path = str_replace('\\', '/', $this
    ->getTarget());
  return Url::fromRoute('system.private_file_download', [
    'filepath' => $path,
  ], [
    'absolute' => TRUE,
    'path_processing' => FALSE,
  ])
    ->toString();
}