You are here

function theme_filefield_widget in FileField 6.3

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

File

./filefield_widget.inc, line 486
This file contains CCK widget related functionality.

Code

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

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