Forums / Developer / paremeter by url
Alain Mangana
Tuesday 18 November 2008 3:43:51 am
I seek a way to add a parameter in a URL(<a href={$node.url_alias|ezurl}>link</a>) and then recover it back after.
is that someone has an idea
http://tikdem.com /
Ivo Lukac
Tuesday 18 November 2008 3:49:43 am
Hello Alain,
Try this:
<a href={concat($node.url_alias,"/(param)/value")|ezurl}>link</a>
And than you can use in template of that node this:
{if $view_parameters.param|eq("value")} ... {/if}
http://www.linkedin.com/in/ivolukac http://www.netgen.hr/eng/blog http://twitter.com/ilukac
Tuesday 18 November 2008 5:24:22 am
thanks