module_params
Summary
Extracts parameters from the module that was run.Usage
module_params()
Returns
An array containing module information.Description
This operator extracts some generic information from the module that was run. It seems that it can only be called inside "pagelayout.tpl". Please refer to the example below. The operator does not take any parameters.
Examples
Example 1
{module_params()|attribute(show)}
If the requested URL is "/content/view/full/65" (or using URL alias that points to "/content/view/full/65"), the following output will be produced:
Attribute | Type | Value |
---|---|---|
module_name |
string |
'content' |
function_name |
string |
'view' |
parameters |
array |
Array(2) |
-ViewMode |
string |
'full' |
-NodeID |
string |
65 |
Please note that this operator can only be called in "pagelayout.tpl".
Balazs Halasy (05/02/2004 10:34 am)
Balazs Halasy (05/07/2005 11:16 am)
Comments
Writing out a single value
Tuesday 05 September 2006 11:03:36 am
Kjartan
{module_params.function_name}
This for some reason fails to do the same for the NodeID:
{module_params.>NodeID}
Is there some other way I should do this, or might this feature be disabled for some good reason? Any help is appreciated.
Re: Writing out a single value
Tuesday 05 September 2006 11:15:53 am
Kjartan
{module_params()[parameters][NodeID]}
Hope this saves somebody else a little pointless frustration.