You are here

function theme_biblio_admin_io_mapper_form in Bibliography Module 6.2

Same name and namespace in other branches
  1. 7 includes/biblio.admin.inc \theme_biblio_admin_io_mapper_form()
  2. 7.2 includes/biblio.admin.inc \theme_biblio_admin_io_mapper_form()

See also

biblio_admin_io_mapper_form()

File

includes/biblio.admin.inc, line 1092
Administrative files for the biblio module.

Code

function theme_biblio_admin_io_mapper_form($form) {
  $header = $rows = array();
  $output = drupal_render($form['title']);
  $rows[] = array(
    drupal_render($form['typemap']),
    drupal_render($form['fieldmap']),
  );
  $output .= theme('table', $header, $rows);
  $output .= drupal_render($form);
  return $output;
}