function nodereference_count_widget_info in Nodereference Count 6
Implementation of hook_widget_info().
File
- ./
nodereference_count.module, line 368 - Defines a field type for counting the references to a node.
Code
function nodereference_count_widget_info() {
return array(
'nodereference_count_widget' => array(
'label' => t('default'),
'field types' => array(
'nodereference_count',
),
),
);
}