file_validate_name_length

Versions
6
file_validate_name_length($file)
7
file_validate_name_length(stdClass $file)

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

Code

includes/file.inc, line 605

<?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;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.