function party_hat_field_formatter_info in Party 7
Same name and namespace in other branches
- 8.2 modules/party_hat/party_hat.module \party_hat_field_formatter_info()
Implements hook_field_formatter_info().
File
- modules/
party_hat/ party_hat.module, line 661 - party_hat.module Provides an extensible access system for parties.
Code
function party_hat_field_formatter_info() {
return array(
'hat_reference_default' => array(
'label' => t('Default'),
'field types' => array(
'hat_reference',
),
),
);
}