function theme_sequence_combo

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

Theme the file sequence form element.

Related topics

1 string reference to 'theme_sequence_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 227
Form elements used Various places in Tripal

Code

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

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

  return $output;
}