Mercurial > hg > isophonics-drupal-site
comparison core/modules/node/src/Plugin/migrate/D7NodeTranslation.php @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
15:e200cb7efeb3 | 16:c2387f117808 |
---|---|
1 <?php | |
2 | |
3 namespace Drupal\node\Plugin\migrate; | |
4 | |
5 use Drupal\migrate\Plugin\Migration; | |
6 use Drupal\migrate_drupal\Plugin\MigrationWithFollowUpInterface; | |
7 | |
8 /** | |
9 * Migration plugin for the Drupal 7 node translations. | |
10 */ | |
11 class D7NodeTranslation extends Migration implements MigrationWithFollowUpInterface { | |
12 | |
13 /** | |
14 * {@inheritdoc} | |
15 */ | |
16 public function generateFollowUpMigrations() { | |
17 $this->migrationPluginManager->clearCachedDefinitions(); | |
18 return $this->migrationPluginManager->createInstances('d7_entity_reference_translation'); | |
19 } | |
20 | |
21 } |