function charts_graphs_amcharts_menu in Charts and Graphs 6.2
Same name and namespace in other branches
- 7 apis/charts_graphs_amcharts/charts_graphs_amcharts.module \charts_graphs_amcharts_menu()
File
- apis/
charts_graphs_amcharts/ charts_graphs_amcharts.module, line 39 - drupal module file implementing amcharts.
Code
function charts_graphs_amcharts_menu() {
$items = array();
$items['charts_graphs_amcharts/getdata'] = array(
'page callback' => 'charts_graphs_amcharts_get_data',
'access arguments' => array(
'access content',
),
'type' => MENU_CALLBACK,
);
return $items;
}