Skip to content

Instantly share code, notes, and snippets.

@rintoug
Created March 25, 2017 10:56
Show Gist options
  • Save rintoug/01d669906b88d56632cad497205575cc to your computer and use it in GitHub Desktop.
Save rintoug/01d669906b88d56632cad497205575cc to your computer and use it in GitHub Desktop.
Check if user is logged in Drupal 7
<?php
global $user;
if ( $user->uid ) {
// Logged in user
}
else {
// Not logged in
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment