function discussthis_field_formatter_info in Discuss This! 7.2
Implements hook_field_formatter_info().
We need to tell Drupal that we have two different types of formatters for this field. One will change the text color, and the other will change the background color.
See also
field_example_field_formatter_view()
File
- ./
discussthis.fields.inc, line 79 - DiscussThis field declaration using Field Types API.
Code
function discussthis_field_formatter_info() {
return array(
// This formatter just displays the link to teh discussion
'field_discussthis_link' => array(
'label' => t('Simple text-based link to discussion'),
'field types' => array(
'field_discussthis',
),
),
);
}