Search code examples
rolesdrupal-8

Get Drupal 8 Roles label


I'm loading a user to get his roles, but I only get the role machine name. I found the way to load those roles:

$roles = Role::loadMultiple($user->getRoles());

but now I need to get the labels of those roles.

Thanks.


Solution

  • foreach ($roles as $role) {
      $label = $role->label();
    }