On this page
function user_role_permissions
user_role_permissions(array $roles)
Determine the permissions for one or more roles.
Parameters
array $roles: An array of role IDs.
Return value
array An array indexed by role ID. Each value is an array of permission strings for the given role.
File
- core/modules/user/user.module, line 317
- Enables the user registration and login system.
Code
function user_role_permissions(array $roles) {
if (defined('MAINTENANCE_MODE') && MAINTENANCE_MODE == 'update') {
return _user_role_permissions_update($roles);
}
$entities = Role::loadMultiple($roles);
$role_permissions = array();
foreach ($roles as $rid) {
$role_permissions[$rid] = isset($entities[$rid]) ? $entities[$rid]->getPermissions() : array();
}
return $role_permissions;
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!user!user.module/function/user_role_permissions/8.1.x