public function Magento::prepareRow in Commerce Migrate 8.2
Same name and namespace in other branches
- 3.1.x modules/magento/src/Plugin/migrate/source/magento2/Magento.php \Drupal\commerce_migrate_magento\Plugin\migrate\source\magento2\Magento::prepareRow()
- 3.0.x modules/magento/src/Plugin/migrate/source/magento2/Magento.php \Drupal\commerce_migrate_magento\Plugin\migrate\source\magento2\Magento::prepareRow()
File
- modules/
magento/ src/ Plugin/ migrate/ source/ magento2/ Magento.php, line 20
Class
- Magento
- Gets the destination site default language.
Namespace
Drupal\commerce_migrate_magento\Plugin\migrate\source\magento2Code
public function prepareRow(Row $row) {
// Get the destination site default language.
$language = \Drupal::languageManager()
->getDefaultLanguage()
->getId();
$row
->setSourceProperty('destination_default_langcode', $language);
return parent::prepareRow($row);
}