function theme_pdf_to_imagefield_widget in PDF to ImageField 7
Same name and namespace in other branches
- 6.2 pdf_to_imagefield.module \theme_pdf_to_imagefield_widget()
- 6 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 651 - PDF to ImageField core hooks and menu callbacks.
Code
function theme_pdf_to_imagefield_widget($variables) {
$element = $variables['element'];
$element['#id'] .= '-upload';
// Link the label to the upload field.
return theme('form_element', $element, $element['#children']);
}