You are here

function emthumb_emfield_widget_extra_file_included in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 contrib/emthumb/emthumb.module \emthumb_emfield_widget_extra_file_included()
  2. 6.2 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;
}