You are here

public function File::getFilename in Drupal 9

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

Returns the name of the file.

This may differ from the basename of the URI if the file is renamed to avoid overwriting an existing file.

Return value

string Name of the file.

Overrides FileInterface::getFilename

File

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

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function getFilename() {
  return $this
    ->get('filename')->value;
}