You are here

public function Authmap::import in External Authentication 2.0.x

Same name and namespace in other branches
  1. 8 src/Plugin/migrate/destination/Authmap.php \Drupal\externalauth\Plugin\migrate\destination\Authmap::import()

Import the row.

Derived classes must implement import(), to construct one new object (pre-populated) using ID mappings in the Migration.

Parameters

\Drupal\migrate\Row $row: The row object.

array $old_destination_id_values: (optional) The old destination IDs. Defaults to an empty array.

Return value

array|bool An indexed array of destination IDs in the same order as defined in the plugin's getIds() method if the plugin wants to save the IDs to the ID map, TRUE to indicate success without saving IDs to the ID map, or FALSE to indicate a failure.

Overrides MigrateDestinationInterface::import

File

src/Plugin/migrate/destination/Authmap.php, line 97

Class

Authmap
Drupal 8 authmap destination.

Namespace

Drupal\externalauth\Plugin\migrate\destination

Code

public function import(Row $row, array $old_destination_id_values = []) {

  /** @var \Drupal\user\UserInterface $account */
  $account = $this->userStorage
    ->load($row
    ->getDestinationProperty('uid'));
  $provider = $row
    ->getDestinationProperty('provider');
  $authname = $row
    ->getDestinationProperty('authname');
  $this->authmap
    ->save($account, $provider, $authname);
  return [
    $account
      ->id(),
  ];
}