Smarty Forum Index Smarty
The discussions here are for Smarty, a template engine for the PHP programming language.
Dedicated server web hosting provided by Guru-host.eu.
changing session variable in template

 
Post new topic   Reply to topic    Smarty Forum Index -> Smarty Development
View previous topic :: View next topic  
Author Message
amitfts
Smarty n00b


Joined: 04 Jun 2010
Posts: 1

PostPosted: Fri Jun 04, 2010 6:38 am    Post subject: changing session variable in template Reply with quote

Hi friends
I have to change the value of session variable after using it in template file
{$smarty.session.popup}
may you help me how can I modified it
Back to top
View user's profile Send private message Send e-mail
U.Tews
Administrator


Joined: 22 Nov 2006
Posts: 4183
Location: Hamburg / Germany

PostPosted: Fri Jun 04, 2010 10:06 am    Post subject: Reply with quote

You have to write a registered function or function plugin to do this job if you really have to modify the session from within the template.
Back to top
View user's profile Send private message
mohrt
Administrator


Joined: 16 Apr 2003
Posts: 7047
Location: Lincoln Nebraska, USA

PostPosted: Fri Jun 04, 2010 1:51 pm    Post subject: Reply with quote

do that in PHP (business logic). otherwise write a plugin to assign it, as session vars are read-only in the template. But you really should handle this in PHP and just assign presentational elements in-template. example:

php:

Code:
if($_SESSION['popup']) {
  $smarty->assign('is_popup',true);
  $_SESSION['popup'] = false;
}


template:

Code:
{if $is_popup}
   ...
{/if}


Here you see the template deals with presentation, and not the underlying business logic (ie. reading/writing session vars)
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Smarty Forum Index -> Smarty Development All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Protected by Anti-Spam ACP