You are here

function theme_biblio_admin_types_edit_form in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 includes/biblio_theme.inc \theme_biblio_admin_types_edit_form()
  2. 6 biblio_theme.inc \theme_biblio_admin_types_edit_form()
  3. 7.2 includes/biblio.theme.inc \theme_biblio_admin_types_edit_form()

Parameters

$form:

File

includes/biblio_theme.inc, line 969

Code

function theme_biblio_admin_types_edit_form($variables) {
  $form = $variables['form'];
  $output = '';
  $output .= drupal_render($form['help']);
  $output .= drupal_render($form['pub_type']);
  $output .= drupal_render($form['change_type']);
  if (isset($form['type_name'])) {
    $output .= drupal_render($form['type_name']);
  }
  $output .= drupal_render($form['biblio_tabs']);
  $output .= drupal_render_children($form);
  return $output;
}