Skip to content

Instantly share code, notes, and snippets.

@zuhairkareem
Last active June 29, 2016 10:22
Show Gist options
  • Save zuhairkareem/ac499d9798b9c851795fcc8d4bfeedd4 to your computer and use it in GitHub Desktop.
Save zuhairkareem/ac499d9798b9c851795fcc8d4bfeedd4 to your computer and use it in GitHub Desktop.
To get current user's roles in D8
$userCurrent = \Drupal::currentUser();
$user = Drupal\user\Entity\User::load($userCurrent->id());
$roles = $user->getRoles();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment