function EntityComment::processStubRow
Populates as much of the stub row as possible.
Parameters
\Drupal\migrate\Row $row: The row of data.
Overrides EntityContentBase::processStubRow
File
-
core/
modules/ comment/ src/ Plugin/ migrate/ destination/ EntityComment.php, line 101
Class
- EntityComment
- Plugin annotation @MigrateDestination( id = "entity:comment" )
Namespace
Drupal\comment\Plugin\migrate\destinationCode
protected function processStubRow(Row $row) {
parent::processStubRow($row);
// Neither uid nor name is required in itself, but it is required to set one
// of them.
$row->setDestinationProperty('name', 'anonymous_stub');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.