You are here

public function File::getFileUri in Zircon Profile 8.0

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

Returns the URI of the file.

Return value

string The URI of the file, e.g. public://directory/file.jpg.

Overrides FileInterface::getFileUri

2 calls to File::getFileUri()
File::preSave in core/modules/file/src/Entity/File.php
Acts on an entity before the presave hook is invoked.
File::url in core/modules/file/src/Entity/File.php
Gets the public URL for this entity.

File

core/modules/file/src/Entity/File.php, line 60
Contains \Drupal\file\Entity\File.

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

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