function Role::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/d7/Role.php, line 33

Class

Role
Drupal 7 role source from database.

Namespace

Drupal\user\Plugin\migrate\source\d7

Code

public function fields() {
  return [
    'rid' => $this->t('Role ID.'),
    'name' => $this->t('The name of the user role.'),
    'weight' => $this->t('The weight of the role.'),
  ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.