references:joomla.legacy:1.5:moshtml-yesnoselectlistTable of Contents
yesnoSelectList
A convenient method of building an HTML select list consisting of just a ‘No’ and a ‘Yes’ option. 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 yesnoSelectList ( string $tag_name, string $tag_attribs, mixed $selected [,string $yes [, string $no ]] )
ExamplesExample 1: A simple yes/no select field with ‘No’ selected by default Example 1 $html = mosHTML::yesnoSelectList( 'show_banners', 'class="inputbox"', '0' ); echo $html; </code which produces: <code html| Result 1> <select name="show_banners" class="inputbox"> <option value="0" selected="selected">No</option> <option value="1">Yes</option> </select> which renders as: Example 2: A select list for ‘On’ or ‘Off’ with ‘On’ selected by default. Example 2 $html = mosHTML::yesnoSelectList( 'myswitch', 'class="inputbox"', '1', 'On', 'Off' ); echo $html; which produces: Result 2 <select name="myswitch" class="inputbox"> <option value="0">Off</option> <option value="1" selected="selected">On</option> </select> which renders as: |



