function fivestar_field_info in Fivestar 6
Same name and namespace in other branches
- 5 fivestar_field.inc \fivestar_field_info()
- 6.2 includes/fivestar.field.inc \fivestar_field_info()
- 7.2 includes/fivestar.field.inc \fivestar_field_info()
Implementation of hook_field_info().
File
- ./
fivestar_field.inc, line 11 - Provides CCK integration for fivestar module
Code
function fivestar_field_info() {
return array(
'fivestar' => array(
'label' => t('Fivestar Rating'),
'description' => t('Store a rating for this piece of content.'),
),
);
}