You are here

function easychart_wysiwyg_init in Easychart 7.3

Implements hook_init().

File

modules/easychart_wysiwyg/easychart_wysiwyg.module, line 126
Easychart WYSIWYG integration.

Code

function easychart_wysiwyg_init() {

  // A global counter to be used when printing the charts.
  global $chart_count;
  $chart_count = 0;
  drupal_add_css(drupal_get_path('module', 'easychart_wysiwyg') . '/plugins/css/plugin.css');
}