You are here

function theme_pdf_to_imagefield_widget in PDF to ImageField 6

Same name and namespace in other branches
  1. 6.2 pdf_to_imagefield.module \theme_pdf_to_imagefield_widget()
  2. 7 pdf_to_imagefield.module \theme_pdf_to_imagefield_widget()

FormAPI theme function. Theme the output of an pdf field.

File

./pdf_to_imagefield.module, line 356
PDF to ImageField core hooks and menu callbacks.

Code

function theme_pdf_to_imagefield_widget($element) {
  $element['#id'] .= '-upload';

  // Link the label to the upload field.
  return theme('form_element', $element, $element['#children']);
}