public function Role::getPermissions in Drupal 10
Same name and namespace in other branches
- 8 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::getPermissions()
- 9 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::getPermissions()
Returns a list of permissions assigned to the role.
Return value
array The permissions assigned to the role.
Overrides RoleInterface::getPermissions
File
- core/
modules/ user/ src/ Entity/ Role.php, line 94
Class
- Role
- Defines the user role entity class.
Namespace
Drupal\user\EntityCode
public function getPermissions() {
if ($this
->isAdmin()) {
return [];
}
return $this->permissions;
}