Juan Carlos Munoz
|
Friday 11 February 2005 8:07:36 am
Hi,
I'm trying to redirect users to specifics modules with specific variables after they login in my system, for example, I want to redirect them to some module like: http://example/ezpublish/test?id1=1&id2=2. When someone click on that link, and then login in, the system only redirect to the module without the value of vars id1 and id2. How can I do that? Juan Carlos Muñoz
|
Łukasz Serwatka
|
Tuesday 01 March 2005 10:57:33 pm
Hi Juan, You can use hidden field to setup redirecting uri. <input type="hidden" name="RedirectURI" value={"/test/(id1)/1/(id1)/2"|ezurl} /> Then access id variable using {$view_parameters.id1} to view id1 value in templates. I hope it will help.
Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog
|