You are here

function fivestar_widget_info in Fivestar 6

Same name and namespace in other branches
  1. 5 fivestar_field.inc \fivestar_widget_info()
  2. 6.2 includes/fivestar.field.inc \fivestar_widget_info()

Implementation of hook_widget_info().

File

./fivestar_field.inc, line 173
Provides CCK integration for fivestar module

Code

function fivestar_widget_info() {
  return array(
    'stars' => array(
      'label' => t('Stars'),
      'field types' => array(
        'fivestar',
      ),
      'multiple values' => CONTENT_HANDLE_MODULE,
    ),
    'radios' => array(
      'label' => t('Select list'),
      'field types' => array(
        'fivestar',
      ),
      'multiple values' => CONTENT_HANDLE_MODULE,
    ),
  );
}