function charts_openflash_menu in Charts and Graphs 6
Same name and namespace in other branches
- 7 apis/charts_openflash/charts_openflash.module \charts_openflash_menu()
File
- apis/
charts_openflash/ charts_openflash.module, line 35 - drupal module file implementing openflash charting.
Code
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;
}