class MigrateRollbackEvent in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/migrate/src/Event/MigrateRollbackEvent.php \Drupal\migrate\Event\MigrateRollbackEvent
Wraps a pre- or post-rollback event for event listeners.
Hierarchy
- class \Symfony\Component\EventDispatcher\Event
- class \Drupal\migrate\Event\MigrateRollbackEvent
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\EventView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Event:: |
private | property | ||
Event:: |
private | property | ||
Event:: |
private | property | ||
Event:: |
public | function | Returns the EventDispatcher that dispatches this Event. | |
Event:: |
public | function | Gets the event's name. | |
Event:: |
public | function | Returns whether further event listeners should be triggered. | |
Event:: |
public | function | Stores the EventDispatcher that dispatches this Event. | |
Event:: |
public | function | Sets the event's name property. | |
Event:: |
public | function | Stops the propagation of the event to further event listeners. | |
MigrateRollbackEvent:: |
protected | property | Migration entity. | |
MigrateRollbackEvent:: |
public | function | Gets the migration entity. | |
MigrateRollbackEvent:: |
public | function | Constructs an rollback event object. |