row = $row; $this->source = $source; $this->migration = $migration; } /** * Gets the row object. * * @return \Drupal\migrate\Row * The row object about to be imported. */ public function getRow() { return $this->row; } /** * Gets the source plugin. * * @return \Drupal\migrate\Plugin\MigrateSourceInterface * The source plugin firing the event. */ public function getSource() { return $this->source; } /** * Gets the migration plugin. * * @return \Drupal\migrate\Plugin\MigrationInterface * The migration entity being imported. */ public function getMigration() { return $this->migration; } }