public function Row::needsUpdate in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/src/Row.php \Drupal\migrate\Row::needsUpdate()
- 10 core/modules/migrate/src/Row.php \Drupal\migrate\Row::needsUpdate()
Returns if this row needs an update.
Return value
bool TRUE if the row needs updating, FALSE otherwise.
File
- core/
modules/ migrate/ src/ Row.php, line 408
Class
- Row
- Stores a row.
Namespace
Drupal\migrateCode
public function needsUpdate() {
return $this->idMap['source_row_status'] == MigrateIdMapInterface::STATUS_NEEDS_UPDATE;
}