Combines [client_getparams] and [client_postparams] into a single array. Can be used as an inline-safe replacement for [action_params] if you do not need the extra values added by Lasso.
Click the "Download" button below to retrieve a copy of this tag,
including the complete documentation and sample usage shown
on this page. Place the downloaded ".inc" file in your
LassoStartup folder, restart Lasso, and you can begin using this
tag immediately.
1
2
3
4
5
6
7
8
9
10
11
12
define_tag(
'params',
-namespace='client_',
-priority='replace',
-description='Returns an array that is a combination of [client_getparams] and [client_postparams].'
);
local('out') = array;
#out->merge(client_getparams);
#out->merge(client_postparams);
return(#out);
/define_tag;