function migrate_webform_menu in Migrate Webform 7
@file Migrate does not use this file. So global helper functions could go here.
File
- ./
migrate_webform.module, line 9 - Migrate does not use this file. So global helper functions could go here.
Code
function migrate_webform_menu() {
$items['admin/content/migrate/webform'] = array(
'title' => 'Configure Webform Migration',
'description' => 'Database configuration for Migrate Webform',
'type' => MENU_LOCAL_TASK,
'page callback' => 'drupal_get_form',
'page arguments' => array(
'migrate_webform_admin_form',
),
'access arguments' => array(
'migration information',
),
'weight' => 111,
);
return $items;
}