You are here

function easychart_node_info in Easychart 7

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

Implements hook_node_info().

File

./easychart.module, line 11
Easy Chart module file.

Code

function easychart_node_info() {
  return array(
    'easychart' => array(
      'name' => t('Chart'),
      'base' => 'node_content',
      'description' => t('Create a chart based on your CSV data.'),
      'locked' => TRUE,
    ),
  );
}