Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. PrivateStream.php

function 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\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();
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal