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
1 /**
2  * Implements hook_migrate_prepare_row().
3  */
4 function {{ machine_name }}_migrate_prepare_row(Row $row, MigrateSourceInterface $source, MigrationInterface $migration) {
5   if ($migration->id() == 'd6_filter_formats') {
6     $value = $source->getDatabase()->query('SELECT value FROM {variable} WHERE name = :name', [':name' => 'mymodule_filter_foo_' . $row->getSourceProperty('format')])->fetchField();
7     if ($value) {
8       $row->setSourceProperty('settings:mymodule:foo', unserialize($value));
9     }
10   }
11 }