function _file_field_get_description_from_element

Retrieves the file description from a field field element.

This helper function is used by file_field_widget_process_multiple().

Parameters

$element: The element being processed.

Return value

A description of the file suitable for use in the administrative interface.

1 call to _file_field_get_description_from_element()
file_field_widget_process_multiple in drupal/core/modules/file/file.field.inc
Render API callback: Processes a group of file_generic field elements.

File

drupal/core/modules/file/file.field.inc, line 520
Field module functionality for the File module.

Code

function _file_field_get_description_from_element($element) {

  // Use the actual file description, if it's available.
  if (!empty($element['#default_value']['description'])) {
    return $element['#default_value']['description'];
  }

  // Otherwise, fall back to the filename.
  if (!empty($element['#default_value']['filename'])) {
    return $element['#default_value']['filename'];
  }

  // This is probably a newly uploaded file; no description is available.
  return FALSE;
}