snippet
0 answers
How to Show the Primary Link Description Under the Primary Link for Attractive Navigation?
0 answers
Firefox drops the session variable
0 answers
Retrieving progress of Direct Upload using youtube gdata API
1 year 20 weeks ago Tags:
- Read more
- View Orignal Stackoverflow Question
- login or register to post comments
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;
}