Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 19 |
| MigrationBuilder | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
30 | |
0.00% |
0 / 19 |
| __construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| createMigrations | |
0.00% |
0 / 1 |
20 | |
0.00% |
0 / 17 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\migrate\MigrationBuilder. | |
| */ | |
| namespace Drupal\migrate; | |
| use Drupal\migrate\Entity\Migration; | |
| use Drupal\migrate\Plugin\MigratePluginManager; | |
| /** | |
| * Builds migration entities from migration templates. | |
| */ | |
| class MigrationBuilder implements MigrationBuilderInterface { | |
| /** | |
| * The builder plugin manager. | |
| * | |
| * @var \Drupal\migrate\Plugin\MigratePluginManager | |
| */ | |
| protected $builderManager; | |
| /** | |
| * Constructs a MigrationBuilder. | |
| * | |
| * @param \Drupal\migrate\Plugin\MigratePluginManager $builder_manager | |
| * The builder plugin manager. | |
| */ | |
| public function __construct(MigratePluginManager $builder_manager) { | |
| $this->builderManager = $builder_manager; | |
| } | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| public function createMigrations(array $templates) { | |
| /** @var \Drupal\migrate\Entity\MigrationInterface[] $migrations */ | |
| $migrations = []; | |
| foreach ($templates as $template_id => $template) { | |
| if (isset($template['builder'])) { | |
| $variants = $this->builderManager | |
| ->createInstance($template['builder']['plugin'], $template['builder']) | |
| ->buildMigrations($template); | |
| } | |
| else { | |
| $variants = array(Migration::create($template)); | |
| } | |
| /** @var \Drupal\migrate\Entity\MigrationInterface[] $variants */ | |
| foreach ($variants as $variant) { | |
| $variant->set('template', $template_id); | |
| } | |
| $migrations = array_merge($migrations, $variants); | |
| } | |
| return $migrations; | |
| } | |
| } |