You are here

function charts_graphs_menu in Charts and Graphs 6

Same name and namespace in other branches
  1. 6.2 charts_graphs.module \charts_graphs_menu()
  2. 7.2 charts_graphs.module \charts_graphs_menu()
  3. 7 charts_graphs.module \charts_graphs_menu()

Implementation of hook_menu().

File

./charts_graphs.module, line 31

Code

function charts_graphs_menu() {
  $items = array();

  // For testing and Advanced Help examples.
  $items['charts_graphs/test'] = array(
    'page callback' => 'charts_graphs_test',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}