function File::createFileUrl

Same name and namespace in other branches
  1. 9 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::createFileUrl()
  2. 8.9.x core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::createFileUrl()
  3. 11.x core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::createFileUrl()

Creates a file URL for the URI of this file.

Parameters

bool $relative: (optional) Whether the URL should be root-relative, defaults to TRUE.

Return value

string A string containing a URL that may be used to access the file.

Overrides FileInterface::createFileUrl

File

core/modules/file/src/Entity/File.php, line 92

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function createFileUrl($relative = TRUE) {
    
    /** @var \Drupal\Core\File\FileUrlGeneratorInterface $file_url_generator */
    $file_url_generator = \Drupal::service('file_url_generator');
    return $relative ? $file_url_generator->generateString($this->getFileUri()) : $file_url_generator->generateAbsoluteString($this->getFileUri());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.