function theme_migrate_settings in Migrate 6
Theme function for settings form.
1 string reference to 'theme_migrate_settings'
- migrate_theme in ./
migrate.module - Implementation of hook_theme().
File
- ./
migrate_pages.inc, line 881
Code
function theme_migrate_settings($form) {
$output = '';
$output .= drupal_render($form['description']);
$output .= drupal_render($form['display_timers']);
$output .= drupal_render($form['hide_help_message']);
$output .= drupal_render($form['cache_counts']);
$output .= drupal_render($form['refresh_counts']);
$output .= drupal_render($form['integrations']);
$output .= drupal_render($form);
return $output;
}