You appear to be a bot. Output may be restricted
Description
Create a select field for a form-table
Usage
bw_select( $name, $text, $value, $args );
Parameters
- $name
- ( string ) required – field name
- $text
- ( string ) required – label for the field
- $value
- ( int ) required – the selected item
- $args
- ( array ) required – array of parameters where the options are keyed by #options
Returns
voidSource
File name: oik-bwtrace/libs/bobbforms.phpLines:
1 to 6 of 6
function bw_select( $name, $text, $value, $args ) { $lab = label( $name, $text ); $iselect = iselect( $name, $value, $args ); bw_tablerow( array( $lab, $iselect ) ); return; }View on GitHub View on Trac