You are here

function easychart_field_info in Easychart 7.3

Same name and namespace in other branches
  1. 7 easychart.module \easychart_field_info()
  2. 7.2 easychart.module \easychart_field_info()

Implements hook_field_info().

File

./easychart.module, line 108
Easychart module file.

Code

function easychart_field_info() {
  return array(
    // We name our field as the associative name of the array.
    'easychart' => array(
      'label' => t('Chart'),
      'default_widget' => 'easychart',
      'default_formatter' => 'easychart_default',
    ),
  );
}