You are here

public function DrupalComment7Migration::prepareRow in Drupal-to-Drupal data migration 7.2

Called after the query data is fetched - we'll use this to populate the source row with the CCK fields.

Overrides Migration::prepareRow

File

d7/comment.inc, line 58
Implementation of DrupalCommentMigration for Drupal 7 sources.

Class

DrupalComment7Migration
Handling specific to a Drupal 7 source for comments.

Code

public function prepareRow($row) {
  if (parent::prepareRow($row) === FALSE) {
    return FALSE;
  }
  $this->version
    ->getSourceValues($row, $row->cid);
}