protected function InputHelper::saveFileUpload in FillPDF 5.0.x
Same name and namespace in other branches
- 8.4 src/InputHelper.php \Drupal\fillpdf\InputHelper::saveFileUpload()
Saves an uploaded file, marking it permanent.
Parameters
\Drupal\file\FileInterface $file: The file object to save.
Deprecated
in fillpdf:8.x-4.7 and is removed from fillpdf:8.x-5.0. Use FileInterface::setPermanent() and FileInterface::save() instead.
See also
https://www.drupal.org/project/fillpdf/issues/3055123
File
- src/
InputHelper.php, line 127
Class
- InputHelper
- Class InputHelper.
Namespace
Drupal\fillpdfCode
protected function saveFileUpload(FileInterface $file) {
@trigger_error('InputHelper::saveFileUpload() is deprecated in fillpdf:8.x-4.7 and is removed from fillpdf:8.x-5.0. Use \\Drupal\\file\\FileInterface::setPermanent() and \\Drupal\\file\\FileInterface::save() instead. See https://www.drupal.org/project/fillpdf/issues/3055123', E_USER_DEPRECATED);
$file
->setPermanent();
$file
->save();
}