Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / migration_plugins_alter.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/hook/migration_plugins_alter.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/hook/migration_plugins_alter.twig
new file mode 100644 (file)
index 0000000..7ff11ea
--- /dev/null
@@ -0,0 +1,9 @@
+/**
+ * Implements hook_migration_plugins_alter().
+ */
+function {{ machine_name }}_migration_plugins_alter(array &$migrations) {
+  $migrations = array_filter($migrations, function (array $migration) {
+    $tags = isset($migration['migration_tags']) ? (array) $migration['migration_tags'] : [];
+    return !in_array('Drupal 6', $tags);
+  });
+}