API15:JHTMLSelect/booleanlist
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.
Contents |
Description
Generates a yes/no radio list
Description:JHTMLSelect/booleanlist
Syntax
booleanlist($name, $attribs=null, $selected=null, $yes='yes', $no='no', $id=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | The value of the HTML name attribute | |
| $attribs | null | Additional HTML attributes for the <select> tag |
| $selected | null | The key that is selected |
| $yes | 'yes' | |
| $no | 'no' | |
| $id | false |
Returns
string HTML for the radio list
Defined in
libraries/joomla/html/html/select.php
Importing
jimport( 'joomla.html.html.select' );
Source Body
function booleanlist( $name, $attribs = null, $selected = null, $yes='yes', $no='no', $id=false ) { $arr = array( JHTML::_('select.option', '0', JText::_( $no ) ), JHTML::_('select.option', '1', JText::_( $yes ) ) ); return JHTML::_('select.radiolist', $arr, $name, $attribs, 'value', 'text', (int) $selected, $id ); }
[Edit See Also] SeeAlso:JHTMLSelect/booleanlist
Examples
<CodeExamplesForm />
