public function File::setPermanent in Drupal 8
Same name and namespace in other branches
- 9 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::setPermanent()
Sets the file status to permanent.
Overrides FileInterface::setPermanent
File
- core/
modules/ file/ src/ Entity/ File.php, line 151
Class
- File
- Defines the file entity class.
Namespace
Drupal\file\EntityCode
public function setPermanent() {
$this
->get('status')->value = FILE_STATUS_PERMANENT;
}