function drush_migrate_stop in Migrate 7.2
Same name and namespace in other branches
- 6.2 migrate.drush.inc \drush_migrate_stop()
- 6 migrate.drush.inc \drush_migrate_stop()
Stop clearing or importing a given content set.
Parameters
$content_set: The name of the Migration
File
- ./
migrate.drush.inc, line 1380 - Drush support for the migrate module
Code
function drush_migrate_stop($args = NULL) {
try {
$migrations = drush_migrate_get_migrations($args);
foreach ($migrations as $migration) {
drush_log(dt("Stopping '!description' migration", array(
'!description' => $migration
->getMachineName(),
)));
$migration
->stopProcess();
}
} catch (MigrateException $e) {
drush_print($e
->getMessage());
exit;
}
}