file_validate_name_length
includes/file.inc, строка 598
- Версии
- 6
file_validate_name_length($file)
Check for files with names longer than we can store in the database.
Параметры
$file
A Drupal file object.
Возвращаемое значение
Массив. Если имя файла слишком длинное, будет содержать сообщение об ошибке.
Связанные темы
Код
<?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;
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии