public function FileUploadSanitizeNameEvent::setSecurityRename in Drupal 10
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/File/Event/FileUploadSanitizeNameEvent.php \Drupal\Core\File\Event\FileUploadSanitizeNameEvent::setSecurityRename()
Sets the security rename flag.
Return value
$this
File
- core/
lib/ Drupal/ Core/ File/ Event/ FileUploadSanitizeNameEvent.php, line 96
Class
- FileUploadSanitizeNameEvent
- An event during file upload that lets subscribers sanitize the filename.
Namespace
Drupal\Core\File\EventCode
public function setSecurityRename() : self {
$this->isSecurityRename = TRUE;
return $this;
}