function node_field_radio_widget in Node Field 7.2
Widget for radio field.
1 string reference to 'node_field_radio_widget'
- node_field_types_info in includes/
node_field.field.inc - Node field types info.
File
- includes/
node_field.field.inc, line 291 - Field types, settings, widget and formatters.
Code
function node_field_radio_widget($node_field) {
$options = node_field_get_options_field_options($node_field);
$form = [
'#type' => 'radios',
'#title' => $node_field['title'],
'#options' => $options,
'#default_value' => $node_field['value'],
];
return $form;
}