Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hope you all people are enjoying your good health!

I am newbie to PyroCMS and I am facing issue with displaying Login and Logout links on the basis of User session. I tried hard to google to get help about this but could find proper help.

{ if'{session:data name="user_id" != "" }'}
      <li><a href="{{url:base}}users/logout">logout</a></li>
{/else}
      <li><a href="{{url:base}}users/login">log in</a></li>
{/if}

It is not working. Please help me to fix this issue!

Thank You.

share|improve this question
You were close but that is a mixture of old (1.x) and new (2.x) syntax. The question has been answered correctly below, so could you accept it? :) – Phil Sturgeon Sep 6 '12 at 16:11
where is this file located ? – hydrarulz Sep 20 '12 at 7:40

1 Answer

up vote 5 down vote accepted

PyroCMS has a tag specifically for checking if a user is already logged in. Try something like this:

{{ if user:logged_in }}
  <a href="{{ url:site uri='users/logout' }}">Logout</a>
{{ else }}
  <a href="{{ url:site uri='users/login' }}">Login</a>
{{ endif }}
share|improve this answer
2  
Yep - see the User plugin docs - there's also a {{ user:not_logged_in }} method if you want to test specifically for that without using an else statement. – williamt Aug 15 '12 at 21:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.