You are here

public function UserData::fields in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Plugin/migrate/destination/UserData.php \Drupal\user\Plugin\migrate\destination\UserData::fields()

Returns an array of destination fields.

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

@todo Review the cases where we need the Migration parameter, can we avoid that?

Parameters

\Drupal\migrate\Entity\MigrationInterface $migration: (optional) the migration containing this destination.

Return value

array

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

Overrides MigrateDestinationInterface::fields

File

core/modules/user/src/Plugin/migrate/destination/UserData.php, line 86
Contains \Drupal\user\Plugin\migrate\destination\UserData.

Class

UserData
Plugin annotation @MigrateDestination( id = "user_data" )

Namespace

Drupal\user\Plugin\migrate\destination

Code

public function fields(MigrationInterface $migration = NULL) {
  return [
    'uid' => 'The user id.',
    'module' => 'The module name responsible for the settings.',
    'key' => 'The setting key to save under.',
    'settings' => 'The settings to save.',
  ];
}