references:joomla.legacy:1.5:moshtml-yesnoradiolistTable of Contents
yesnoRadioList
A convenient method of building an HTML radio list consisting of just a ‘yes’ button and a ‘no’ button. The words for ‘yes’ and ‘no’ are taken from the current language settings. The HTML field will return a ‘0’ is the user selects ‘no’ or ‘1’ if the user selects ‘yes’. Syntaxstring yesnoRadioList ( string $tag_name, string $tag_attribs, mixed $selected [,string $yes [, string $no ]] )
ExamplesExample 1: A simple yes/no radio button field with ‘No’ selected by default. Example 1 // A simple yes/no radio button field. $html = mosHTML::yesnoRadioList( 'myswitch', 'class="inputbox"', '0' ); echo $html; which produces: Result 1 <input type="radio" name="myswitch" value="0" checked="checked" class="inputbox" />No <input type="radio" name="myswitch" value="1" class="inputbox" />Yes which renders as: No Yes Example 2: A radio button field for ‘On’ or ‘Off’ selection with ‘On’ selected by default. Example 2 // An on/off radio button field. $html = mosHTML::yesnoRadioList( 'myswitch', 'class="inputbox"', '1', 'On', 'Off' ); echo $html; which produces: Result 2 <input type="radio" name="myswitch" value="0" class="inputbox" />Off <input type="radio" name="myswitch" value="1" checked="checked" class="inputbox" />On which renders as: Off On |



