You are here

function charts_menu in Charts 6

Same name and namespace in other branches
  1. 7.2 charts.module \charts_menu()
  2. 7 charts.hooks.inc \charts_menu()

Implementation of hook_menu().

File

./charts.module, line 42
@author Bruno Massa http://drupal.org/user/67164

Code

function charts_menu() {
  $items['admin/settings/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;
}