| Versionen | |
|---|---|
| drupal6 – drupal7 | file_validate_name_length($file) |
Check for files with names longer than we can store in the database.
$file A Drupal file object.
An array. If the file name is too long, it will contain an error message.
includes/
<?php
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;
}
?>
Kommentare
Kommentar hinzufügen