function uuidreference_field_formatter_info in UUID reference field 7
Implements hook_field_formatter_info().
File
- ./
uuidreference.module, line 70
Code
function uuidreference_field_formatter_info() {
return array(
'uuidreference_label' => array(
'label' => t('Label'),
'description' => t('Display the label of the referenced entities.'),
'field types' => array(
'uuidreference',
),
'settings' => array(
'link' => FALSE,
),
),
);
}