function emthumb_emfield_widget_extra_file_included in Embedded Media Field 6.2
Same name and namespace in other branches
- 6.3 contrib/emthumb/emthumb.module \emthumb_emfield_widget_extra_file_included()
- 6 contrib/emthumb/emthumb.module \emthumb_emfield_widget_extra_file_included()
Callback from hook_emfield_widget_extra_file_included() In Drupal 6, we need to build multipart/form-data forms manually. @returns TRUE. This ensures the form will handle files properly in d6.
File
- contrib/
emthumb/ emthumb.module, line 362 - Allows for custom thumbnail overrides to Embedded Media Field.
Code
function emthumb_emfield_widget_extra_file_included() {
return TRUE;
}