function easychart_field_widget_info in Easychart 7
Same name and namespace in other branches
- 7.3 easychart.module \easychart_field_widget_info()
 - 7.2 easychart.module \easychart_field_widget_info()
 
Implements hook_field_widget_info().
File
- ./
easychart.module, line 125  - Easy Chart module file.
 
Code
function easychart_field_widget_info() {
  return array(
    'easychart' => array(
      'label' => t('Chart'),
      'field types' => array(
        'easychart',
      ),
    ),
  );
}