You are here

public function File::getCreatedTime in Drupal 9

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

Returns the file entity creation timestamp.

Return value

int Creation timestamp of the file entity.

Overrides FileInterface::getCreatedTime

File

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

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function getCreatedTime() {
  return $this
    ->get('created')->value;
}