function nodereference_count_field_info in Nodereference Count 6
Same name and namespace in other branches
- 7 nodereference_count.module \nodereference_count_field_info()
Implementation of hook_field_info().
File
- ./
nodereference_count.module, line 11 - Defines a field type for counting the references to a node.
Code
function nodereference_count_field_info() {
return array(
'nodereference_count' => array(
'label' => t('Nodereference count'),
'description' => t('Store nodereference count data in the database.'),
),
);
}