Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. UserUpdate8002.php

function 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\process

Code

public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    $rid = $row->getSourceProperty('rid');
    $map = [
        1 => 'anonymous',
        2 => 'authenticated',
    ];
    return $map[$rid] ?? $value;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal