You are here

function filefield_file_widget_info in FileField 6.2

Implementation of filefield's hook_file_widget_info().

File

./filefield.module, line 761

Code

function filefield_file_widget_info() {
  return array(
    'generic' => array(
      'form element' => 'filefield_generic_edit',
      'suitability callback' => TRUE,
      'title' => t('Generic files'),
      'description' => t('An edit widget for all kinds of files.'),
    ),
  );
}