You are here

function charts_graphs_amcharts_menu in Charts and Graphs 7

Same name and namespace in other branches
  1. 6.2 apis/charts_graphs_amcharts/charts_graphs_amcharts.module \charts_graphs_amcharts_menu()

@todo Please document this function.

See also

http://drupal.org/node/1354

File

apis/charts_graphs_amcharts/charts_graphs_amcharts.module, line 43
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;
}