protected 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 23
Class
- UserPermissionsRoleSpecificForm
- Provides the user permissions administration form for a specific role.
Namespace
Drupal\user\Form
Code
1 2 3 | protected function getRoles() { return array ( $this ->userRole->id() => $this ->userRole); } |
Please login to continue.