You are here

protected function UserPermissionsRoleSpecificForm::getRoles in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 28
Contains \Drupal\user\Form\UserPermissionsRoleSpecificForm.

Class

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

Namespace

Drupal\user\Form

Code

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