Skip to content

Instantly share code, notes, and snippets.

@brandonratz
Created September 10, 2014 21:26
Show Gist options
  • Save brandonratz/6a622fbc040e69e368df to your computer and use it in GitHub Desktop.
Save brandonratz/6a622fbc040e69e368df 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