7ff11ea65fe3585bcc403fca7d3256ffb1ccfc01
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / migration_plugins_alter.twig
1 /**
2  * Implements hook_migration_plugins_alter().
3  */
4 function {{ machine_name }}_migration_plugins_alter(array &$migrations) {
5   $migrations = array_filter($migrations, function (array $migration) {
6     $tags = isset($migration['migration_tags']) ? (array) $migration['migration_tags'] : [];
7     return !in_array('Drupal 6', $tags);
8   });
9 }