You are here

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

Same name in this branch
  1. 2.0.x src/Plugin/migrate/source/Authmap.php \Drupal\externalauth\Plugin\migrate\source\Authmap::fields()
  2. 2.0.x src/Plugin/migrate/destination/Authmap.php \Drupal\externalauth\Plugin\migrate\destination\Authmap::fields()
Same name and namespace in other branches
  1. 8 src/Plugin/migrate/destination/Authmap.php \Drupal\externalauth\Plugin\migrate\destination\Authmap::fields()

Returns an array of destination fields.

Derived classes must implement fields(), returning a list of available destination fields.

Return value

array

  • Keys: machine names of the fields
  • Values: Human-friendly descriptions of the fields.

Overrides MigrateDestinationInterface::fields

File

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

Class

Authmap
Drupal 8 authmap destination.

Namespace

Drupal\externalauth\Plugin\migrate\destination

Code

public function fields(MigrationInterface $migration = NULL) {
  return [
    'uid' => 'Primary key: users.uid for user.',
    'provider' => 'The name of the authentication provider providing the authname',
    'authname' => 'Unique authentication name provided by authentication provider',
  ];
}