You are here

protected function UserPermissionsRoleSpecificForm::getRoles in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/src/Form/UserPermissionsRoleSpecificForm.php \Drupal\user\Form\UserPermissionsRoleSpecificForm::getRoles()
  2. 10 core/modules/user/src/Form/UserPermissionsRoleSpecificForm.php \Drupal\user\Form\UserPermissionsRoleSpecificForm::getRoles()

Gets the roles to display in this form.

Return value

\Drupal\user\RoleInterface[] An array of role objects.

Overrides UserPermissionsForm::getRoles

File

core/modules/user/src/Form/UserPermissionsRoleSpecificForm.php, line 25

Class

UserPermissionsRoleSpecificForm
Provides the user permissions administration form for a specific role.

Namespace

Drupal\user\Form

Code

protected function getRoles() {
  return [
    $this->userRole
      ->id() => $this->userRole,
  ];
}