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 modules/file/file.field.inc
An element #process callback for a group of file_generic fields.

File

modules/file/file.field.inc, line 739

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.