public function File::createFileUrl in Drupal 8
Same name and namespace in other branches
- 9 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::createFileUrl()
- 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
- core/
modules/ file/ src/ Entity/ File.php, line 81
Class
- File
- Defines the file entity class.
Namespace
Drupal\file\EntityCode
public function createFileUrl($relative = TRUE) {
$url = file_create_url($this
->getFileUri());
if ($relative && $url) {
$url = file_url_transform_relative($url);
}
return $url;
}