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

Returns the URI of the file.

Return value

string|null The URI of the file, e.g. public://directory/file.jpg, or NULL if it has not yet been set.

Overrides FileInterface::getFileUri

2 calls to File::getFileUri()
File::createFileUrl in core/modules/file/src/Entity/File.php
Creates a file URL for the URI of this file.
File::preSave in core/modules/file/src/Entity/File.php
Acts on an entity before the presave hook is invoked.

File

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

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function getFileUri() {
  return $this
    ->get('uri')->value;
}