UserUpdate8002.php

Same filename and directory in other branches
  1. 9 core/modules/user/src/Plugin/migrate/process/UserUpdate8002.php
  2. 8.9.x core/modules/user/src/Plugin/migrate/process/UserUpdate8002.php
  3. 10 core/modules/user/src/Plugin/migrate/process/UserUpdate8002.php

Namespace

Drupal\user\Plugin\migrate\process

File

core/modules/user/src/Plugin/migrate/process/UserUpdate8002.php

View source
<?php

namespace Drupal\user\Plugin\migrate\process;

use Drupal\migrate\Attribute\MigrateProcess;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\Row;

/**
 * Keep the predefined roles for rid 1 and 2.
 */
class UserUpdate8002 extends ProcessPluginBase {
  
  /**
   * {@inheritdoc}
   *
   * Keep the predefined roles for rid 1 and 2.
   */
  public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    $rid = $row->getSourceProperty('rid');
    $map = [
      1 => 'anonymous',
      2 => 'authenticated',
    ];
    return $map[$rid] ?? $value;
  }

}

Classes

Title Deprecated Summary
UserUpdate8002 Keep the predefined roles for rid 1 and 2.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.