function UserEntityTranslation::prepareRow
Same name in other branches
- 9 core/modules/user/src/Plugin/migrate/source/d7/UserEntityTranslation.php \Drupal\user\Plugin\migrate\source\d7\UserEntityTranslation::prepareRow()
- 8.9.x core/modules/user/src/Plugin/migrate/source/d7/UserEntityTranslation.php \Drupal\user\Plugin\migrate\source\d7\UserEntityTranslation::prepareRow()
- 10 core/modules/user/src/Plugin/migrate/source/d7/UserEntityTranslation.php \Drupal\user\Plugin\migrate\source\d7\UserEntityTranslation::prepareRow()
Overrides SourcePluginBase::prepareRow
File
-
core/
modules/ user/ src/ Plugin/ migrate/ source/ d7/ UserEntityTranslation.php, line 38
Class
- UserEntityTranslation
- Drupal 7 user entity translations source from database.
Namespace
Drupal\user\Plugin\migrate\source\d7Code
public function prepareRow(Row $row) {
$uid = $row->getSourceProperty('entity_id');
$language = $row->getSourceProperty('language');
// Get Field API field values.
foreach ($this->getFields('user') as $field_name => $field) {
// Ensure we're using the right language if the entity is translatable.
$field_language = $field['translatable'] ? $language : NULL;
$row->setSourceProperty($field_name, $this->getFieldValues('user', $field_name, $uid, NULL, $field_language));
}
return parent::prepareRow($row);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.