You are here

public function D6WebformSubmission::prepareRow in Webform: Migrate 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/migrate/source/d6/D6WebformSubmission.php \Drupal\webform_migrate\Plugin\migrate\source\d6\D6WebformSubmission::prepareRow()

Adds additional data to the row.

Parameters

\Drupal\migrate\Row $row: The row object.

Return value

bool FALSE if this row needs to be skipped.

Overrides SourcePluginBase::prepareRow

File

src/Plugin/migrate/source/d6/D6WebformSubmission.php, line 59

Class

D6WebformSubmission
Drupal 6 webform submission source from database.

Namespace

Drupal\webform_migrate\Plugin\migrate\source\d6

Code

public function prepareRow(Row $row) {
  $nid = $row
    ->getSourceProperty('nid');
  $sid = $row
    ->getSourceProperty('sid');
  $submitted_data = $this
    ->buildSubmittedData($sid);
  $row
    ->setSourceProperty('webform_id', 'webform_' . $nid);
  $row
    ->setSourceProperty('webform_data', $submitted_data);
  $row
    ->setSourceProperty('webform_uri', '/node/' . $nid);
  return parent::prepareRow($row);
}