J1.5

Difference between revisions of "Category parameter type"

From Joomla! Documentation

m (Added some extra links)
m (Added more categorisations because this page is generic.)
Line 1: Line 1:
 
[[Image:Params.category.jpg|right]]
 
[[Image:Params.category.jpg|right]]
The category parameter type provides a drop down list of published categories from a given section.  If the parameter has a saved value this is selected when the page is first loaded.  If not, the default value (if any) is selected.  The first option on the list is always '- Select Category -' (which is a translatable string) and is given the value 0.
+
The '''category''' parameter type provides a drop down list of published categories from a given section.  If the parameter has a saved value this is selected when the page is first loaded.  If not, the default value (if any) is selected.  The first option on the list is always '- Select Category -' (which is a translatable string) and is given the value 0.
  
 
<font color="red">[[[ Note: At present this does not check if the section is published (only the categories).  See tracker #12256.  ]]]</font>
 
<font color="red">[[[ Note: At present this does not check if the section is published (only the categories).  See tracker #12256.  ]]]</font>
Line 19: Line 19:
 
* [[Section parameter type]]
 
* [[Section parameter type]]
 
* [[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:30, 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.

Params.category.jpg

The category parameter type provides a drop down list of published categories from a given section. If the parameter has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected. The first option on the list is always '- Select Category -' (which is a translatable string) and is given the value 0.

[[[ Note: At present this does not check if the section is published (only the categories). See tracker #12256. ]]]

  • type (mandatory) must be category.
  • name (mandatory) is the unique name of the parameter.
  • label (mandatory) (translatable) is the descriptive title of the field.
  • section (optional) is the ID number of the section from which the categories in the list are drawn. The section ID number can be found in the Section Manager. If omitted, all published categories in all sections will be listed.
  • scope (optional) is an alias for section.
  • default (optional) is the default category ID number.
  • description (optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.
  • class (optional) is a CSS class name for the HTML form field. If omitted this will default to 'inputbox'.

Example XML parameter definition:

<param name="mycategory" type="category" label="Select a category” description="" section="3" />

See also[edit]