API17

JHtmlSelect::option

From Joomla! Documentation

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API17" 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.

Joomla 11.1 JHtmlSelect::option[edit]

Description[edit]

Create an object that represents an option in an option list.


public static function option (
        $value
        $text= ''
        $optKey= 'value'
        $optText= 'text'
        $disable=false
)
Parameter Type Default Description
$value string The value of the option
$text string The text for the option
$optKey array 'value' array. Additional attributes for this option. Defaults to none. disable: Boolean. If set, this option is disabled. label: String. The value for the option label. option.attr: The property in each option array to use for additional selection attributes. Defaults to none. option.disable: The property that will hold the disabled state. Defaults to "disable". option.key: The property that will hold the selection value. Defaults to "value". option.label: The property in each option array to use as the selection label attribute. If a "label" option is provided, defaults to "label", if no label is given, defaults to null (none). option.text: The property that will hold the the displayed text. Defaults to "text". If set to null, the option array is assumed to be a list of displayable scalars.
$optText string 'text' The property that will hold the the displayed text. This parameter is ignored if an options array is passed.
$disable false
  • Returns object
  • Defined on line 400 of libraries/joomla/html/html/select.php

See also[edit]


User contributed notes[edit]

Code Examples[edit]