You are here

function charts_graphs_open_flash_menu in Charts and Graphs 6.2

Same name and namespace in other branches
  1. 7 apis/charts_graphs_open_flash/charts_graphs_open_flash.module \charts_graphs_open_flash_menu()

Implementation of hook_menu().

File

apis/charts_graphs_open_flash/charts_graphs_open_flash.module, line 39
drupal module file implementing Open Flash Chart 2 charting.

Code

function charts_graphs_open_flash_menu() {
  $items = array();
  $items['charts_graphs_open_flash/data'] = array(
    'page callback' => 'charts_graphs_open_flash_data',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}