Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / file_validate.twig
1 /**
2  * Implements hook_file_validate().
3  */
4 function {{ machine_name }}_file_validate($file) {
5   $errors = array();
6
7   if (empty($file->filename)) {
8     $errors[] = t("The file's name is empty. Please give a name to the file.");
9   }
10   if (strlen($file->filename) > 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 }