0080a6aec44b7bc4eccf264cbd0dd3a603ded20f
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / file_validate.twig
1 /**
2  * Implements hook_file_validate().
3  */
4 function {{ machine_name }}_file_validate(Drupal\file\FileInterface $file) {
5   $errors = [];
6
7   if (!$file->getFilename()) {
8     $errors[] = t("The file's name is empty. Please give a name to the file.");
9   }
10   if (strlen($file->getFilename()) > 255) {
11     $errors[] = t("The file's name exceeds the 255 characters limit. Please rename the file and try again.");
12   }
13
14   return $errors;
15 }