function charts_graphs_menu in Charts and Graphs 6
Same name and namespace in other branches
- 6.2 charts_graphs.module \charts_graphs_menu()
- 7.2 charts_graphs.module \charts_graphs_menu()
- 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;
}