function file_validate_name_length in Drupal 6
Same name and namespace in other branches
- 8 core/modules/file/file.module \file_validate_name_length()
- 7 includes/file.inc \file_validate_name_length()
- 9 core/modules/file/file.module \file_validate_name_length()
- 10 core/modules/file/file.module \file_validate_name_length()
Check for files with names longer than we can store in the database.
Parameters
$file: A Drupal file object.
Return value
An array. If the file name is too long, it will contain an error message.
Related topics
File
- includes/
file.inc, line 720 - API for handling file uploads and server file management.
Code
function file_validate_name_length($file) {
$errors = array();
if (strlen($file->filename) > 255) {
$errors[] = t('Its name exceeds the 255 characters limit. Please rename the file and try again.');
}
return $errors;
}