You are here

public function MigrateSkipRowException::getSaveToMap in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/MigrateSkipRowException.php \Drupal\migrate\MigrateSkipRowException::getSaveToMap()
  2. 9 core/modules/migrate/src/MigrateSkipRowException.php \Drupal\migrate\MigrateSkipRowException::getSaveToMap()

Whether the thrower wants to record this skip in the map table.

Return value

bool TRUE to record as STATUS_IGNORED in the map, FALSE to skip silently.

File

core/modules/migrate/src/MigrateSkipRowException.php, line 37

Class

MigrateSkipRowException
This exception is thrown when a row should be skipped.

Namespace

Drupal\migrate

Code

public function getSaveToMap() {
  return $this->saveToMap;
}