You are here

function fivestar_field_info in Fivestar 6

Same name and namespace in other branches
  1. 5 fivestar_field.inc \fivestar_field_info()
  2. 6.2 includes/fivestar.field.inc \fivestar_field_info()
  3. 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.'),
    ),
  );
}