File::isPermanent

public 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 145

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function isPermanent() {
  return $this->get('status')->value == FILE_STATUS_PERMANENT;
}
doc_Drupal
2016-10-29 09:13:15
Comments
Leave a Comment

Please login to continue.