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

Returns TRUE if the file is permanent.

Return value

bool TRUE if the file status is permanent.

Overrides FileInterface::isPermanent

File

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

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function isPermanent() {
  return $this
    ->get('status')->value == static::STATUS_PERMANENT;
}