Mercurial > hg > isophonics-drupal-site
view core/modules/node/src/Plugin/migrate/D7NodeTranslation.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
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 7 node translations. */ class D7NodeTranslation extends Migration implements MigrationWithFollowUpInterface { /** * {@inheritdoc} */ public function generateFollowUpMigrations() { $this->migrationPluginManager->clearCachedDefinitions(); return $this->migrationPluginManager->createInstances('d7_entity_reference_translation'); } }