Mercurial > hg > isophonics-drupal-site
view core/modules/migrate/src/Event/MigratePreRowSaveEvent.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
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; } }