Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / migrate_prepare_row.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/hook/migrate_prepare_row.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/hook/migrate_prepare_row.twig
new file mode 100644 (file)
index 0000000..f8d9a88
--- /dev/null
@@ -0,0 +1,11 @@
+/**
+ * Implements hook_migrate_prepare_row().
+ */
+function {{ machine_name }}_migrate_prepare_row(Row $row, MigrateSourceInterface $source, MigrationInterface $migration) {
+  if ($migration->id() == 'd6_filter_formats') {
+    $value = $source->getDatabase()->query('SELECT value FROM {variable} WHERE name = :name', [':name' => 'mymodule_filter_foo_' . $row->getSourceProperty('format')])->fetchField();
+    if ($value) {
+      $row->setSourceProperty('settings:mymodule:foo', unserialize($value));
+    }
+  }
+}