17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1180 Views |
-
Accessing Session values in templates

30 October 2008 at 11:16am
Hey guys,
Hopefully someone can help me, im trying to access a session value I have set with Session::set("school", true); in a Page class file, but im unsure how to access it within a .ss file
I have tried <% if Session::get("school") %> html code <% end_if %> among other things but nothing ive tried seems to work.
Anyone able to point me in the right direction.
Much appreciated
-
Re: Accessing Session values in templates

30 October 2008 at 12:13pm
I dont think there is anything built into the template system for this. You will have to add a function on your Page.php or other code file in the controller part
function SessionSchool() {
return Session::get("school");
}Then access it will $SessionSchool
| 1180 Views | ||
|
Page:
1
|
Go to Top |


