You are here

function wordpress_migrate_configure in WordPress Migrate 7

Menu callback: Returns a page for configuring WordPress migrations.

1 string reference to 'wordpress_migrate_configure'
wordpress_migrate_menu in ./wordpress_migrate.module
Implements hook_menu().

File

./wordpress_migrate.pages.inc, line 542
Web UI for migrating WordPress blogs to Drupal.

Code

function wordpress_migrate_configure() {
  drupal_set_title(t('WordPress configuration'));
  return drupal_get_form('wordpress_migrate_configure_form');
}