Mercurial > hg > isophonics-drupal-site
view core/modules/node/src/Plugin/migrate/D6NodeTranslation.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | c2387f117808 |
children |
line wrap: on
line source
<?php namespace Drupal\node\Plugin\migrate; use Drupal\migrate\Plugin\Migration; use Drupal\migrate_drupal\Plugin\MigrationWithFollowUpInterface; /** * Migration plugin for the Drupal 6 node translations. */ class D6NodeTranslation extends Migration implements MigrationWithFollowUpInterface { /** * {@inheritdoc} */ public function generateFollowUpMigrations() { $this->migrationPluginManager->clearCachedDefinitions(); return $this->migrationPluginManager->createInstances('d6_entity_reference_translation'); } }