public function Role::fields in Drupal 10
Same name in this branch
- 10 core/modules/user/src/Plugin/migrate/source/d6/Role.php \Drupal\user\Plugin\migrate\source\d6\Role::fields()
- 10 core/modules/user/src/Plugin/migrate/source/d7/Role.php \Drupal\user\Plugin\migrate\source\d7\Role::fields()
Same name and namespace in other branches
- 8 core/modules/user/src/Plugin/migrate/source/d6/Role.php \Drupal\user\Plugin\migrate\source\d6\Role::fields()
- 9 core/modules/user/src/Plugin/migrate/source/d6/Role.php \Drupal\user\Plugin\migrate\source\d6\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/ d6/ Role.php, line 43
Class
- Role
- Drupal 6 role source from database.
Namespace
Drupal\user\Plugin\migrate\source\d6Code
public function fields() {
return [
'rid' => $this
->t('Role ID.'),
'name' => $this
->t('The name of the user role.'),
];
}