You are here

function charts_openflash_chartgraph_provider in Charts and Graphs 7

Same name and namespace in other branches
  1. 6 apis/charts_openflash/charts_openflash.module \charts_openflash_chartgraph_provider()

Implementation of hook_charts_graphs_provider

File

apis/charts_openflash/charts_openflash.module, line 9
drupal module file implementing openflash charting

Code

function charts_openflash_chartgraph_provider() {
  $provider = array(
    'path' => dirname(__FILE__) . '/charts_openflash.class.inc',
    //must be full path
    'clazz' => 'ChartsOpenFlash',
    //implementation class' name
    'name' => 'open-flash',
  );
  return (object) $provider;
}