public function MigrationEventSubscriber::debugRowPostSave in Migrate Devel 8.2
Same name and namespace in other branches
- 8 src/EventSubscriber/MigrationEventSubscriber.php \Drupal\migrate_devel\EventSubscriber\MigrationEventSubscriber::debugRowPostSave()
Post Row Save Function for --migrate-debug.
Parameters
\Drupal\migrate\Event\MigratePostRowSaveEvent $event: Post-Row-Save Migrate Event.
File
- src/EventSubscriber/ MigrationEventSubscriber.php, line 57 
Class
- MigrationEventSubscriber
- MigrationEventSubscriber for Debugging Migrations.
Namespace
Drupal\migrate_devel\EventSubscriberCode
public function debugRowPostSave(MigratePostRowSaveEvent $event) {
  if (PHP_SAPI !== 'cli') {
    return;
  }
  $row = $event
    ->getRow();
  if (in_array('migrate-debug', \Drush\Drush::config()
    ->get('runtime.options'))) {
    // Start with capital letter for variables since this is actually a label.
    $Source = $row
      ->getSource();
    $Destination = $row
      ->getDestination();
    $DestinationIDValues = $event
      ->getDestinationIdValues();
    // Uses Symfony VarDumper.
    // @todo Explore advanced usage of CLI dumper class for nicer output.
    // https://www.drupal.org/project/migrate_devel/issues/3151276
    dump('---------------------------------------------------------------------', '|                             $Source                               |', '---------------------------------------------------------------------', $Source, '---------------------------------------------------------------------', '|                           $Destination                            |', '---------------------------------------------------------------------', $Destination, '---------------------------------------------------------------------', '|                       $DestinationIdValues                        |', '---------------------------------------------------------------------', $DestinationIDValues);
  }
}