You are here

public function MigrationPluginManagerInterface::createInstancesByTag in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/Plugin/MigrationPluginManagerInterface.php \Drupal\migrate\Plugin\MigrationPluginManagerInterface::createInstancesByTag()

Create migrations given a tag.

Parameters

string $tag: A migration tag we want to filter by.

Return value

array|\Drupal\migrate\Plugin\MigrationInterface[] An array of migration objects with the given tag.

1 method overrides MigrationPluginManagerInterface::createInstancesByTag()
MigrationPluginManager::createInstancesByTag in core/modules/migrate/src/Plugin/MigrationPluginManager.php
Create migrations given a tag.

File

core/modules/migrate/src/Plugin/MigrationPluginManagerInterface.php, line 52

Class

MigrationPluginManagerInterface
Migration plugin manager interface.

Namespace

Drupal\migrate\Plugin

Code

public function createInstancesByTag($tag);