You are here

public function File::createFileUrl in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::createFileUrl()
  2. 10 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

See also

file_create_url()

file_url_transform_relative()

1 call to File::createFileUrl()
File::url in core/modules/file/src/Entity/File.php

File

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

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function createFileUrl($relative = TRUE) {
  $url = file_create_url($this
    ->getFileUri());
  if ($relative && $url) {
    $url = file_url_transform_relative($url);
  }
  return $url;
}