Hidden parameter type
From Joomla! Documentation
The "J1.5" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Parameters have been superseded by form fields in Joomla! 1.6. You may want to use the corresponding Hidden form field type. |
The hidden parameter type provides a hidden field for saving a parameter whose value cannot be altered directly by a user in the Administrator (it can be altered in code or by editing the params.ini file). If the parameter has a saved value this is entered in the text box. If not, the default value (if any) is entered. As the field is hidden there is no visible field in the Administrator.
- type (mandatory) must be hidden.
- name (mandatory) is the unique name of the parameter.
- default (mandatory) is the data which needs to be collected.
- class (optional) is a CSS class name for the HTML form field. If omitted this will default to 'text_area'.
Example XML parameter definition:
<param name="mysecretvariable" type="hidden" default="" />