function theme_file_upload_combo

2.x tripal_core.form_elements.inc theme_file_upload_combo($variables)
3.x tripal_core.form_elements.inc theme_file_upload_combo($variables)
1.x form_elements.inc theme_file_upload_combo($element)

Theme the file upload combo form element.

Related topics

1 string reference to 'theme_file_upload_combo'
tripal_core_theme in tripal_core/tripal_core.module
Implements hook_theme(). Registers template files/functions used by this module.

File

tripal_core/includes/tripal_core.form_elements.inc, line 86
Form elements used Various places in Tripal

Code

function theme_file_upload_combo($variables) {
  $element = $variables['element'];
  $output = '';

  $output .= drupal_render($element['items']);
  $output .= " "; // This space forces our fields to have a little room in between.
  $output .= drupal_render($element['items_file']);
  $output .= " "; // This space forces our fields to have a little room in between.
  $output .= drupal_render($element['file_path']);

  return $output;
}