constant MigrateEvents::PREPARE_ROW in Migrate Plus 8.4
Same name and namespace in other branches
- 8.5 src/Event/MigrateEvents.php \Drupal\migrate_plus\Event\MigrateEvents::PREPARE_ROW
- 8 src/Event/MigrateEvents.php \Drupal\migrate_plus\Event\MigrateEvents::PREPARE_ROW
- 8.2 src/Event/MigrateEvents.php \Drupal\migrate_plus\Event\MigrateEvents::PREPARE_ROW
- 8.3 src/Event/MigrateEvents.php \Drupal\migrate_plus\Event\MigrateEvents::PREPARE_ROW
Name of the event fired when preparing a source data row.
This event allows modules to perform an action whenever the source plugin has read the inital source data into a Row object. Typically, this would be used to add data to the row, manipulate the data into a canonical form, or signal by exception that the row should be skipped. The event listener method receives a \Drupal\migrate_plus\Event\MigratePrepareRowEvent instance.
See also
\Drupal\migrate_plus\Event\MigratePrepareRowEvent
File
- src/
Event/ MigrateEvents.php, line 28
Class
- MigrateEvents
- Defines the row preparation event for the migration system.
Namespace
Drupal\migrate_plus\EventCode
const PREPARE_ROW = 'migrate_plus.prepare_row';