function charts_menu in Charts 7
Same name and namespace in other branches
- 6 charts.module \charts_menu()
- 7.2 charts.module \charts_menu()
Implementation of hook_menu().
File
- ./
charts.hooks.inc, line 26 - @author Bruno Massa http://drupal.org/user/67164
Code
function charts_menu() {
$items['admin/config/content/charts'] = array(
'access arguments' => array(
'set default settings for charts',
),
'description' => 'Set the default behaviour and look of all your charts',
'file' => 'charts.admin.inc',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'_charts_settings_page',
),
'title' => 'Charts',
);
return $items;
}