Drupal Check for User Login


/ Published in: PHP
Save to your folder(s)

I use this code to place in blocks or pages to show a link to the user registration page if the user is not currently logged in. An example is a block I have setup on the home page of http://www.lightentheload.net. If the user is logged in, the block goes away.


Copy this code and paste it in your HTML
  1. <?php
  2. global $user;
  3. if (!$user->uid) {
  4. ?>
  5. <div id="register-button">
  6. <p><a href="/user/register">Click Here to Register</a></p>
  7. </div>
  8. <?php
  9. }
  10. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.