You are here

function views_charts_init in Views Charts 7

Same name and namespace in other branches
  1. 6 views_charts.module \views_charts_init()

@todo Please document this function.

See also

http://drupal.org/node/1354

File

./views_charts.module, line 17

Code

function views_charts_init() {
  $mpath = drupal_get_path('module', 'views_charts');
  drupal_add_js($mpath . '/views_charts.js', array(
    'preprocess' => FALSE,
  ));
  drupal_add_css($mpath . '/views_charts.css');
}