You are here

public function MigrateTemplateStorageInterface::findTemplatesByTag in Migrate Manifest 8.2

Same name and namespace in other branches
  1. 8 src/MigrateTemplateStorageInterface.php \Drupal\migrate_manifest\MigrateTemplateStorageInterface::findTemplatesByTag()
  2. 3.x src/MigrateTemplateStorageInterface.php \Drupal\migrate_manifest\MigrateTemplateStorageInterface::findTemplatesByTag()

Find all migration templates with the specified tag.

Parameters

string $tag: The tag to match.

Return value

array Any templates (parsed YAML config) that matched, keyed by the ID.

1 method overrides MigrateTemplateStorageInterface::findTemplatesByTag()
MigrateTemplateStorage::findTemplatesByTag in src/MigrateTemplateStorage.php
Find all migration templates with the specified tag.

File

src/MigrateTemplateStorageInterface.php, line 22

Class

MigrateTemplateStorageInterface
The MigrateTemplateStorageInterface interface.

Namespace

Drupal\migrate_manifest

Code

public function findTemplatesByTag($tag);