function chart_menu in Google Chart Tools: Image Charts 6
Same name and namespace in other branches
- 5 chart.module \chart_menu()
- 7 chart.module \chart_menu()
Implementation of hook_menu().
File
- ./
chart.module, line 102 - Provides Google chart API integration.
Code
function chart_menu() {
$items = array();
$items['admin/settings/chart'] = array(
'title' => 'Charts',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'chart_settings',
),
'access arguments' => array(
'administer chart',
),
);
return $items;
}