You are here

function easychart_node_info in Easychart 7.3

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

Implements hook_node_info().

File

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

Code

function easychart_node_info() {
  return array(
    'easychart' => array(
      'name' => t('Chart'),
      'base' => 'node_content',
      'description' => t('Create a chart using the world\'s best web charting tool: Highcharts'),
      'locked' => TRUE,
    ),
  );
}