protected function SourcePluginBase::rowChanged in Drupal 9
Same name and namespace in other branches
- 8 core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::rowChanged()
Checks if the incoming row has changed since our last import.
Parameters
\Drupal\migrate\Row $row: The row we're importing.
Return value
bool TRUE if the row has changed otherwise FALSE.
1 call to SourcePluginBase::rowChanged()
- SourcePluginBase::next in core/
modules/ migrate/ src/ Plugin/ migrate/ source/ SourcePluginBase.php
File
- core/
modules/ migrate/ src/ Plugin/ migrate/ source/ SourcePluginBase.php, line 462
Class
- SourcePluginBase
- The base class for source plugins.
Namespace
Drupal\migrate\Plugin\migrate\sourceCode
protected function rowChanged(Row $row) {
return $this->trackChanges && $row
->changed();
}