function UserUpdate8002::transform
Same name in other branches
- 9 core/modules/user/src/Plugin/migrate/process/UserUpdate8002.php \Drupal\user\Plugin\migrate\process\UserUpdate8002::transform()
- 8.9.x core/modules/user/src/Plugin/migrate/process/UserUpdate8002.php \Drupal\user\Plugin\migrate\process\UserUpdate8002::transform()
- 11.x core/modules/user/src/Plugin/migrate/process/UserUpdate8002.php \Drupal\user\Plugin\migrate\process\UserUpdate8002::transform()
Keep the predefined roles for rid 1 and 2.
Overrides ProcessPluginBase::transform
File
-
core/
modules/ user/ src/ Plugin/ migrate/ process/ UserUpdate8002.php, line 21
Class
- UserUpdate8002
- Keep the predefined roles for rid 1 and 2.
Namespace
Drupal\user\Plugin\migrate\processCode
public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
$rid = $row->getSourceProperty('rid');
$map = [
1 => 'anonymous',
2 => 'authenticated',
];
return $map[$rid] ?? $value;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.