You appear to be a bot. Output may be restricted
Description
Display the field options for a "select" type fieldoptions – the finite list of possible options
multiple – whether or not it's a multiple select list and if so, how many rows to display
Usage
oik_fie_edit_field_type_select();
Parameters
Returns
voidSource
File name: oik-types/admin/oik-fields.phpLines:
1 to 10 of 10
function oik_fie_edit_field_type_select() { global $bw_field; $argsargs = bw_array_get( $bw_field['args'], 'args', null ); $argsargs['#options'] = bw_array_get( $argsargs, "#options", null ); $argsargs['#multiple'] = bw_array_get( $argsargs, "#multiple", null ); bw_form_field( "#options", "textarea", "Options", $argsargs['#options'], array( '#hint' => "Separate options by commas" ) ); bw_form_field( "#multiple", "numeric", "Single or multiple select", $argsargs['#multiple'] ); }View on GitHub