snippet
0 answers
Fallback Block - if no others are visible, show this one?
0 answers
How to Show the Primary Link Description Under the Primary Link for Attractive Navigation?
0 answers
The tool tip is truncated when an apostrophe (single quote) is used in the title textarea for a cck image field.
How to Find Role of a user in Drupal
Following snippet finds if $user has the role ($role which is a string name of the role) or not:
if (is_array($user->roles) && in_array($role, array_values($user->roles))) {
return TRUE;
}

1 year 8 weeks ago