You are here

function easychart_menu in Easychart 7

Same name and namespace in other branches
  1. 7.3 easychart.module \easychart_menu()
  2. 7.2 easychart.module \easychart_menu()

File

./easychart.module, line 344
Easy Chart module file.

Code

function easychart_menu() {
  $items = array();
  $items['admin/config/media/easychart'] = array(
    'title' => 'Easy Chart',
    'description' => t('Configure the options that will be available when creating charts.'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'easychart_admin',
    ),
    'access arguments' => array(
      'administer Easy Chart settings',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}