class MigratePreRowSaveEvent in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate/src/Event/MigratePreRowSaveEvent.php \Drupal\migrate\Event\MigratePreRowSaveEvent
Wraps a pre-save event for event listeners.
Hierarchy
- class \Symfony\Component\EventDispatcher\Event
- class \Drupal\migrate\Event\MigratePreRowSaveEvent
Expanded class hierarchy of MigratePreRowSaveEvent
2 files declare their use of MigratePreRowSaveEvent
- MigrateEventsTest.php in core/
modules/ migrate/ src/ Tests/ MigrateEventsTest.php - Contains \Drupal\migrate\Tests\MigrateEventsTest.
- MigrateExecutable.php in core/
modules/ migrate/ src/ MigrateExecutable.php - Contains \Drupal\migrate\MigrateExecutable.
File
- core/
modules/ migrate/ src/ Event/ MigratePreRowSaveEvent.php, line 17 - Contains \Drupal\migrate\Event\MigratePreRowSaveEvent.
Namespace
Drupal\migrate\EventView source
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;
}
}
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. | |
MigratePreRowSaveEvent:: |
protected | property | Migration entity. | |
MigratePreRowSaveEvent:: |
protected | property | Row object. | |
MigratePreRowSaveEvent:: |
public | function | Gets the migration entity. | |
MigratePreRowSaveEvent:: |
public | function | Gets the row object. | |
MigratePreRowSaveEvent:: |
public | function | Constructs a pre-save event object. | 1 |