Skip to content

Instantly share code, notes, and snippets.

@sachbearbeiter
Forked from brandonratz/User has Role
Created November 22, 2017 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sachbearbeiter/cd01c58cd905187b1fca465ae952f73f to your computer and use it in GitHub Desktop.
Save sachbearbeiter/cd01c58cd905187b1fca465ae952f73f to your computer and use it in GitHub Desktop.
Drupal
<?php
// Load the currently logged in user.
global $user;
// Check if the user has the 'editor' role.
if (in_array('editor', $user->roles)) {
// do fancy stuff
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment