You are here

constant MigrateEvents::PREPARE_ROW in Migrate Plus 8.5

Same name and namespace in other branches
  1. 8 src/Event/MigrateEvents.php \Drupal\migrate_plus\Event\MigrateEvents::PREPARE_ROW
  2. 8.2 src/Event/MigrateEvents.php \Drupal\migrate_plus\Event\MigrateEvents::PREPARE_ROW
  3. 8.3 src/Event/MigrateEvents.php \Drupal\migrate_plus\Event\MigrateEvents::PREPARE_ROW
  4. 8.4 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\Event

Code

const PREPARE_ROW = 'migrate_plus.prepare_row';