function VariableMultiRow::prepareRow
Same name in other branches
- 8.9.x core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php \Drupal\migrate_drupal\Plugin\migrate\source\VariableMultiRow::prepareRow()
- 10 core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php \Drupal\migrate_drupal\Plugin\migrate\source\VariableMultiRow::prepareRow()
- 11.x core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php \Drupal\migrate_drupal\Plugin\migrate\source\VariableMultiRow::prepareRow()
Overrides SourcePluginBase::prepareRow
1 call to VariableMultiRow::prepareRow()
- Color::prepareRow in core/
modules/ color/ src/ Plugin/ migrate/ source/ d7/ Color.php - Adds additional data to the row.
1 method overrides VariableMultiRow::prepareRow()
- Color::prepareRow in core/
modules/ color/ src/ Plugin/ migrate/ source/ d7/ Color.php - Adds additional data to the row.
File
-
core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ VariableMultiRow.php, line 67
Class
- VariableMultiRow
- Drupal 6/7 multiple variables source from database.
Namespace
Drupal\migrate_drupal\Plugin\migrate\sourceCode
public function prepareRow(Row $row) {
if ($value = $row->getSourceProperty('value')) {
$row->setSourceProperty('value', unserialize($value));
}
return parent::prepareRow($row);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.