dirname(__FILE__) . '/charts_openflash.class.inc', //must be full path 'clazz' => 'ChartsOpenFlash', //implementation class' name 'name' => 'open-flash', //name used when invoking through a factroy method 'nice_name' => 'Open Flash Charts 2', 'chart_types' => array( 'line' => t('Line'), 'bar' => t('Bar'), 'bar_3d' => t('3D Bar'), 'bar_cylinder' => t('Cylinder Bar'), 'bar_cylinder_outline' => t('Outlined Cylinder Bar'), 'bar_dome' => t('Dome Bar'), 'bar_filled' => t('Filled Bar'), 'bar_glass' => t('Glass Bar'), 'bar_round' => t('Glass Bar with rounded tops and bottoms'), 'bar_round_glass' => t('Glass Bar with rounded tops'), 'bar_sketch' => t('Sketched Bar'), 'pie' => t('Pie'), ), ); return (object) $provider; } function charts_openflash_menu() { $items = array(); $items['charts_openflash/data'] = array( 'page callback' => 'charts_openflash_data', 'access arguments' => array('access content'), 'type' => MENU_CALLBACK, ); return $items; } /** * @param $cid * cache_id from which cache to retrieve the data */ function charts_openflash_data($cid = NULL) { $cache = cache_get($cid); if (!$cache) { drupal_not_found(); exit(); } $canvas = $cache->data; $chart = chart_graphs_get_graph('open-flash'); $chart->get_data_from_cache($cid); /*$chart = <<