function migrate_overview in Migrate 7.2
Same name and namespace in other branches
- 6.2 migrate.module \migrate_overview()
Call hook_migrate_overview for overall documentation on implemented migrations.
1 call to migrate_overview()
- migrate_ui_migrate_dashboard in migrate_ui/
migrate_ui.pages.inc - Form for managing migration groups.
File
- ./
migrate.module, line 594 - API and drush commands to support migration of data from external sources into a Drupal installation.
Code
function migrate_overview() {
$overview = '';
$results = module_invoke_all('migrate_overview');
foreach ($results as $result) {
$overview .= $result . ' ';
}
return $overview;
}