You are here

MigratePreRowSaveEvent.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/migrate/src/Event/MigratePreRowSaveEvent.php

File

core/modules/migrate/src/Event/MigratePreRowSaveEvent.php
View source
<?php

/**
 * @file
 * Contains \Drupal\migrate\Event\MigratePreRowSaveEvent.
 */
namespace Drupal\migrate\Event;

use Drupal\migrate\Entity\MigrationInterface;
use Drupal\migrate\Row;
use Symfony\Component\EventDispatcher\Event;

/**
 * Wraps a pre-save event for event listeners.
 */
class MigratePreRowSaveEvent extends Event {

  /**
   * Row object.
   *
   * @var \Drupal\migrate\Row
   */
  protected $row;

  /**
   * Migration entity.
   *
   * @var \Drupal\migrate\Entity\MigrationInterface
   */
  protected $migration;

  /**
   * Constructs a pre-save event object.
   *
   * @param \Drupal\migrate\Entity\MigrationInterface $migration
   *   Migration entity.
   */
  public function __construct(MigrationInterface $migration, Row $row) {
    $this->migration = $migration;
    $this->row = $row;
  }

  /**
   * Gets the migration entity.
   *
   * @return \Drupal\migrate\Entity\MigrationInterface
   *   The migration entity being imported.
   */
  public function getMigration() {
    return $this->migration;
  }

  /**
   * Gets the row object.
   *
   * @return \Drupal\migrate\Row
   *   The row object about to be imported.
   */
  public function getRow() {
    return $this->row;
  }

}

Classes

Namesort descending Description
MigratePreRowSaveEvent Wraps a pre-save event for event listeners.