Mercurial > hg > isophonics-drupal-site
view core/modules/migrate/src/Event/MigratePreRowSaveEvent.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\migrate\Event; use Drupal\migrate\Plugin\MigrationInterface; use Drupal\migrate\MigrateMessageInterface; use Drupal\migrate\Row; /** * Wraps a pre-save event for event listeners. */ class MigratePreRowSaveEvent extends EventBase { /** * Row object. * * @var \Drupal\migrate\Row */ protected $row; /** * Constructs a pre-save event object. * * @param \Drupal\migrate\Plugin\MigrationInterface $migration * Migration entity. * @param \Drupal\migrate\MigrateMessageInterface $message * The current migrate message service. * @param \Drupal\migrate\Row $row */ public function __construct(MigrationInterface $migration, MigrateMessageInterface $message, Row $row) { parent::__construct($migration, $message); $this->row = $row; } /** * Gets the row object. * * @return \Drupal\migrate\Row * The row object about to be imported. */ public function getRow() { return $this->row; } }