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

File

tripal_core/includes/form_elements.inc, line 190
Form elements used for tripal views

Code

function theme_sequence_combo($element) {
  return theme('form_element', $element, '<div class="container-inline">' . $element['#children'] . '</div>');
}