function node_field_link_widget in Node Field 7.2
Widget for link field.
1 string reference to 'node_field_link_widget'
- node_field_types_info in includes/
node_field.field.inc - Node field types info.
File
- includes/
node_field.field.inc, line 231 - Field types, settings, widget and formatters.
Code
function node_field_link_widget($node_field) {
$form = [
'#type' => 'textfield',
'#title' => $node_field['title'],
'#description' => t('This text will be used like title of URL'),
'#default_value' => $node_field['value'],
];
return $form;
}