function migrate_migrate_api in Migrate 6
Same name and namespace in other branches
- 6.2 migrate.module \migrate_migrate_api()
- 7.2 migrate.migrate.inc \migrate_migrate_api()
File
- ./
migrate.module, line 1545 - This module provides tools at "administer >> content >> migrate" for analyzing data from various sources and importing them into Drupal tables.
Code
function migrate_migrate_api() {
$api = array(
'api' => 1,
'path' => 'modules',
'integration modules' => array(
'comment' => array(
'description' => t('Core migration support for the comment module'),
),
'node' => array(
'description' => t('Core migration support for the node module'),
),
'profile' => array(
'description' => t('Core migration support for the profile module'),
),
'taxonomy' => array(
'description' => t('Core migration support for the taxonomy module'),
),
'user' => array(
'description' => t('Core migration support for the user module'),
),
),
);
return $api;
}