API15:JHTMLSelect/option
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Description:JHTMLSelect/option
Contents |
Syntax
option($value, $text='', $value_name='value', $text_name='text', $disable=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $value | The value of the option | |
| $text | The text for the option | |
| $value_name | 'value' | The returned object property name for the value |
| $text_name | 'text' | The returned object property name for the text |
| $disable | false |
Returns
object
Defined in
libraries/joomla/html/html/select.php
Importing
jimport( 'joomla.html.html.select' );
Source Body
function option( $value, $text='', $value_name='value', $text_name='text', $disable=false ) { $obj = new stdClass; $obj->$value_name = $value; $obj->$text_name = trim( $text ) ? $text : $value; $obj->disable = $disable; return $obj; }
[Edit See Also] SeeAlso:JHTMLSelect/option
Examples
<CodeExamplesForm />
