How to show logout button if user is logged in Drupal?

20.6k Views Asked by At

I need to show a logout button on my site if a user is logged in and a login button if a user is not logged in. How can I do that?

5

There are 5 best solutions below

1
On BEST ANSWER

Take a look at this post on the drupal forum: Dynamic login/logout link in Primary Links

0
On
<?php
global $user;


if ($user->uid) 
{
Welcome:
print l($user->name,'user/'.$user->uid);
print l("logout","logout");//this is logout link
}
else 
{
//show him login form
}
?>
1
On

Since Drupal is a CMS app, one could tweek this as administrator from the 'Stucture'->'Blocks' section. There you can find the 'User Menu' block. This is responsible for showing the logout fields. So make sure to enable it and to drag it to a visible area of your current theme. On the other hand, to be able to logout directly from the url, make sure you clear your browsers cache first. Eventually restart Apache ($ sudo /etc/init.d/apache2 restart) and then type http://yourdomain/?=logout. Should do the trick.

0
On

Quite easy, actually. Took me some time but I figured this out:

  • I use the module 'taxonomy access permissions' to grant or deny access to my nodes depending on user role.
  • Once installed, make taxonomy with terms 'logged in' and 'logged out', and make this taxonomy available for node type 'page'.
  • Administer the TAP module, setting permissions for anonymous user: logged in > deny deny deny, and logged out > allow deny deny. In the same way, set permissions for authenticated user: logged in > allow deny deny, and logged out > deny deny deny. Result: if I add a page and set the taxonomy to 'logged in', only authenticated users will see the page. If I set it to 'logged out', only anonymous users will see the page.
  • make a page with path 'log_in', add as content php code that redirects the user to path 'user' and set taxonomy to 'logged out'. When I'm not logged in, I can access the node and will be redirected to the login page. When I'm already logged in, I won't be able to access the node.
  • make a page with path 'log_out' and as content php code that redirects the user to path 'logout' and set taxonomy to 'logged in'. When I'm not logged in, I won't be able to access the node. When I'm already logged in, I can access the node and will be logged out.
  • in your menu, add two new items: one called 'LOGIN' with path 'log_in' and one called 'LOGOUT' with path 'log_out'.
  • Done! People not logged in will see the menu item 'LOGIN' but not 'LOGOUT' because access to that node is denied. People logged in will see the item 'LOGOUT' but not 'LOGIN' because access to that node is denied.
0
On

Simpler method. Make two items on the menu.

http://drupal.org/node/264225#comment-863102