You are here

function theme_uploadfield_widget in Video 6.5

Same name and namespace in other branches
  1. 6.3 types/uploadfield/uploadfield_widget.inc \theme_uploadfield_widget()
  2. 6.4 types/uploadfield/uploadfield.theme.inc \theme_uploadfield_widget()

FormAPI theme function. Theme the output of an video upload field.

File

types/uploadfield/uploadfield.theme.inc, line 10
Theme functions for the uploadfield module.

Code

function theme_uploadfield_widget($element) {
  return theme('form_element', $element, $element['#children']);
}