J1.5

Difference between revisions of "Hidden parameter type"

From Joomla! Documentation

(New page: 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 ...)
 
m (Added more categorisations because this page is generic.)
Line 1: Line 1:
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.
+
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.
 
* '''type''' (mandatory) must be hidden.
Line 11: Line 11:
 
=== See also ===
 
=== See also ===
 
* [[Standard parameter types|Full list of standard parameter types]]
 
* [[Standard parameter types|Full list of standard parameter types]]
</noinclude>
+
[[Category:Components]][[Category:Modules]][[Category:Plugins]][[Category:Templates]][[Category:Development]]</noinclude>
[[Category:Templates]]
 

Revision as of 17:34, 21 August 2008

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.

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="" />

See also[edit]