class MigrateRowDeleteEvent in Drupal 9
Same name and namespace in other branches
- 8 core/modules/migrate/src/Event/MigrateRowDeleteEvent.php \Drupal\migrate\Event\MigrateRowDeleteEvent
Wraps a row deletion event for event listeners.
Hierarchy
- class \Drupal\Component\EventDispatcher\Event extends \Symfony\Component\EventDispatcher\Event
- class \Drupal\migrate\Event\MigrateRowDeleteEvent
Expanded class hierarchy of MigrateRowDeleteEvent
2 files declare their use of MigrateRowDeleteEvent
- MigrateExecutable.php in core/
modules/ migrate/ src/ MigrateExecutable.php - MigrateUpgradeImportBatch.php in core/
modules/ migrate_drupal_ui/ src/ Batch/ MigrateUpgradeImportBatch.php
File
- core/
modules/ migrate/ src/ Event/ MigrateRowDeleteEvent.php, line 11
Namespace
Drupal\migrate\EventView source
class MigrateRowDeleteEvent extends Event {
/**
* Migration entity.
*
* @var \Drupal\migrate\Plugin\MigrationInterface
*/
protected $migration;
/**
* Values representing the destination ID.
*
* @var array
*/
protected $destinationIdValues;
/**
* Constructs a row deletion event object.
*
* @param \Drupal\migrate\Plugin\MigrationInterface $migration
* Migration entity.
* @param array $destination_id_values
* Values represent the destination ID.
*/
public function __construct(MigrationInterface $migration, $destination_id_values) {
$this->migration = $migration;
$this->destinationIdValues = $destination_id_values;
}
/**
* Gets the migration entity.
*
* @return \Drupal\migrate\Plugin\MigrationInterface
* The migration being rolled back.
*/
public function getMigration() {
return $this->migration;
}
/**
* Gets the destination ID values.
*
* @return array
* The destination ID as an array.
*/
public function getDestinationIdValues() {
return $this->destinationIdValues;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MigrateRowDeleteEvent:: |
protected | property | Values representing the destination ID. | |
MigrateRowDeleteEvent:: |
protected | property | Migration entity. | |
MigrateRowDeleteEvent:: |
public | function | Gets the destination ID values. | |
MigrateRowDeleteEvent:: |
public | function | Gets the migration entity. | |
MigrateRowDeleteEvent:: |
public | function | Constructs a row deletion event object. |