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