How to get the currently logged in user's role in Drupal 7 ? Do you know a simple way of accomplish this ? Is there some drupal core functions for this?
|
feedback
|
|
You can access to the user roles by just using this PHP snippet:
| |||
|
feedback
|
|
$user->roles is an array of the roles that belong to the user keyed by the role ID, value is the role string. So if you wanted to check if user had role 'authenticated user' your code snippet would look something like this (not necessarily the most optimized approach, in_array is a fairly performance-expensive function):
Note that in_array can also accept an array as the "needle" (argument #1) so you could check against multiple role options:
| |||
|
feedback
|
|
I have found a interesting solution to check for multiple roles of a user:
| |||
|
feedback
|