You are here

class MigrateRollbackEvent in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/src/Event/MigrateRollbackEvent.php \Drupal\migrate\Event\MigrateRollbackEvent

Wraps a pre- or post-rollback event for event listeners.

Hierarchy

Expanded class hierarchy of MigrateRollbackEvent

1 file declares its use of MigrateRollbackEvent
MigrateExecutable.php in core/modules/migrate/src/MigrateExecutable.php
Contains \Drupal\migrate\MigrateExecutable.

File

core/modules/migrate/src/Event/MigrateRollbackEvent.php, line 16
Contains \Drupal\migrate\Event\MigrateRollbackEvent.

Namespace

Drupal\migrate\Event
View source
class MigrateRollbackEvent extends Event {

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

  /**
   * Constructs an rollback event object.
   *
   * @param \Drupal\migrate\Entity\MigrationInterface $migration
   *   Migration entity.
   */
  public function __construct(MigrationInterface $migration) {
    $this->migration = $migration;
  }

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

}

Members

Namesort descending Modifiers Type Description Overrides
Event::$dispatcher private property
Event::$name private property
Event::$propagationStopped private property
Event::getDispatcher Deprecated public function Returns the EventDispatcher that dispatches this Event.
Event::getName Deprecated public function Gets the event's name.
Event::isPropagationStopped public function Returns whether further event listeners should be triggered.
Event::setDispatcher Deprecated public function Stores the EventDispatcher that dispatches this Event.
Event::setName Deprecated public function Sets the event's name property.
Event::stopPropagation public function Stops the propagation of the event to further event listeners.
MigrateRollbackEvent::$migration protected property Migration entity.
MigrateRollbackEvent::getMigration public function Gets the migration entity.
MigrateRollbackEvent::__construct public function Constructs an rollback event object.