'; if ($element['fid']['#value'] != 0) { $output .= '
'; $output .= drupal_render($element['preview']); $output .= '
'; } $output .= '
'; $output .= drupal_render($element); $output .= '
'; $output .= ''; return $output; } /** * Custom theme function for VideoFTP upload elements. * * This function allows us to put the "Attach" button immediately after the * select field by respecting the #field_suffix property. */ function theme_videoftp_widget_file($element) { $output = '
'; if (isset($element['#field_prefix'])) { $output .= $element['#field_prefix']; } $size = $element['#size'] ? ' size="'. $element['#size'] .'"' : ''; _form_set_class($element, array('form-select')); $multiple = $element['#multiple']; $output .= '\n"; if (isset($element['#field_suffix'])) { $output .= $element['#field_suffix']; } $output .= '
'; return theme('form_element', $element, $output); }