You are here

function _filefield_file_formatter_info in FileField 6.2

Retrieve information about the formatters that are going to display the single files for the node view or other views. This function also sorts the formatters in the way that the administrator has specified for this field.

2 calls to _filefield_file_formatter_info()
filefield_field_settings in ./filefield.module
Implementation of hook_field_settings().
filefield_formatter_for_file in ./filefield.module
Determine which formatter will be used for displaying the edit form for the given file.

File

./filefield.module, line 653

Code

function _filefield_file_formatter_info($field) {
  $file_formatter_info = _filefield_file_extension_info_original('formatter');
  return _filefield_file_extension_info($file_formatter_info, $field['file_formatters']);
}