You are here

function chart_menu in Google Chart Tools: Image Charts 7

Same name and namespace in other branches
  1. 5 chart.module \chart_menu()
  2. 6 chart.module \chart_menu()

Implements hook_menu().

File

./chart.module, line 103
Provides primary Drupal hook implementations.

Code

function chart_menu() {
  $items = array();
  $items['admin/config/media/chart'] = array(
    'title' => 'Chart',
    'description' => 'Modify chart settings.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'chart_settings',
    ),
    'access arguments' => array(
      'administer chart',
    ),
  );
  return $items;
}