function commerce_file_filefield_sources_widgets in Commerce File 7
Implements hook_filefield_sources_widgets().
This returns a list of widgets that are compatible with FileField Sources.
File
- includes/
commerce_file.field.inc, line 369 - Implement an commerce_file field, based on the file module's file field.
Code
function commerce_file_filefield_sources_widgets() {
// Add any widgets that your module supports here.
return array(
'commerce_file_generic',
);
}