You are here

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

Implementation of Migration::prepareRow().

Parameters

$row:

Overrides Migration::prepareRow

File

d5/comment.inc, line 82
Implementation of DrupalCommentMigration for Drupal 5 sources.

Class

DrupalComment5Migration
Handling specific to a Drupal 5 source for comments.

Code

public function prepareRow($row) {
  if (parent::prepareRow($row) === FALSE) {
    return FALSE;
  }
}