You are here

public function UserPicture::fields in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php \Drupal\user\Plugin\migrate\source\d6\UserPicture::fields()
  2. 9 core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php \Drupal\user\Plugin\migrate\source\d6\UserPicture::fields()

Returns available fields on the source.

Return value

array Available fields in the source, keys are the field machine names as used in field mappings, values are descriptions.

Overrides MigrateSourceInterface::fields

File

core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php, line 38

Class

UserPicture
Drupal 6 user picture source from database.

Namespace

Drupal\user\Plugin\migrate\source\d6

Code

public function fields() {
  return [
    'uid' => 'Primary Key: Unique user ID.',
    'access' => 'Timestamp for previous time user accessed the site.',
    'picture' => "Path to the user's uploaded picture.",
  ];
}