public function MigrateBuilderInterface::buildMigrations in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate/src/Plugin/MigrateBuilderInterface.php \Drupal\migrate\Plugin\MigrateBuilderInterface::buildMigrations()
Builds migration entities based on a template.
Parameters
array $template: The parsed template.
Return value
\Drupal\migrate\Entity\MigrationInterface[] The unsaved migrations generated from the template.
6 methods override MigrateBuilderInterface::buildMigrations()
- CckMigration::buildMigrations in core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ builder/ d6/ CckMigration.php - Builds migration entities based on a template.
- Node::buildMigrations in core/
modules/ node/ src/ Plugin/ migrate/ builder/ d6/ Node.php - Builds migration entities based on a template.
- Node::buildMigrations in core/
modules/ node/ src/ Plugin/ migrate/ builder/ d7/ Node.php - Builds migration entities based on a template.
- ProfileValues::buildMigrations in core/
modules/ user/ src/ Plugin/ migrate/ builder/ d6/ ProfileValues.php - Builds migration entities based on a template.
- TermNode::buildMigrations in core/
modules/ taxonomy/ src/ Plugin/ migrate/ builder/ d6/ TermNode.php - Builds migration entities based on a template.
File
- core/
modules/ migrate/ src/ Plugin/ MigrateBuilderInterface.php, line 29 - Contains \Drupal\migrate\Plugin\MigrateBuilderInterface.
Class
- MigrateBuilderInterface
- Defines the builder plugin type.
Namespace
Drupal\migrate\PluginCode
public function buildMigrations(array $template);