You are here

function migrate_xlat in Migrate 6.2

Same name and namespace in other branches
  1. 6 migrate.module \migrate_xlat()

File

./migrate.module, line 692

Code

function migrate_xlat($contenttype, $oldid) {
  if ($contenttype && $oldid) {
    $newid = _migrate_xlat_get_new_id($contenttype, $oldid);
    if ($newid) {
      $uri = migrate_invoke_all("xlat_{$contenttype}", $newid);
      drupal_goto($uri[0], NULL, NULL, 301);
    }
  }
}