You are here

UserUpdate8002.php in Drupal 8

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

File

core/modules/user/src/Plugin/migrate/process/UserUpdate8002.php
View source
<?php

namespace Drupal\user\Plugin\migrate\process;

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

/**
 * Keep the predefined roles for rid 1 and 2.
 *
 * @MigrateProcessPlugin(
 *   id = "user_update_8002"
 * )
 */
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 isset($map[$rid]) ? $map[$rid] : $value;
  }

}

Classes

Namesort descending Description
UserUpdate8002 Keep the predefined roles for rid 1 and 2.