[client_params]

Description

Link: [client_params]
Author: Jason Huck
Category: Client
Version: 8.x
License:
Posted: Oct. 26, 2005
Updated: Jan. 16, 2006
More by this author...
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.

Parameters

none


Sample Usage

client_params;

-> array: (pair: (id)=(12345)), (pair: (sometext)=(hi))
						

Source Code

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;

 

Related Tags



Comments

none

Email:


Password:



Newest

Most Popular

Support tagSwap.net