UserReference.php in Drupal 10
File
core/modules/migrate_drupal/src/Plugin/migrate/field/d6/UserReference.php
View source
<?php
namespace Drupal\migrate_drupal\Plugin\migrate\field\d6;
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate_drupal\Plugin\migrate\field\ReferenceBase;
class UserReference extends ReferenceBase {
protected $userTypeMigration = 'd6_user_role';
protected function getEntityTypeMigrationId() {
return $this->userTypeMigration;
}
protected function entityId() {
return 'uid';
}
public function defineValueProcessPipeline(MigrationInterface $migration, $field_name, $data) {
$process = [
'plugin' => 'sub_process',
'source' => $field_name,
'process' => [
'target_id' => [
'plugin' => 'migration_lookup',
'migration' => 'd6_user',
'source' => 'uid',
],
],
];
$migration
->setProcessOfProperty($field_name, $process);
}
}
Classes
Name |
Description |
UserReference |
MigrateField Plugin for Drupal 6 user reference fields. |