function petreference_field_info in Previewable email templates 6
Implementation of hook_field_info().
File
- modules/
petreference/ petreference.module, line 61 - Defines a field type for referencing pet template to a node.
Code
function petreference_field_info() {
return array(
'petreference' => array(
'label' => t('PET Reference'),
'description' => t('Store the ID of a related pet template as an integer value.'),
),
);
}