You are here

function commerce_reports_tax_menu in Commerce Reporting 7

Same name and namespace in other branches
  1. 7.4 modules/tax/commerce_reports_tax.module \commerce_reports_tax_menu()
  2. 7.2 modules/tax/commerce_reports_tax.module \commerce_reports_tax_menu()
  3. 7.3 modules/tax/commerce_reports_tax.module \commerce_reports_tax_menu()

Implements hook_menu().

File

commerce_reports_tax/commerce_reports_tax.module, line 6

Code

function commerce_reports_tax_menu() {
  $items = array();
  $items['admin/commerce/config/taxes/reports'] = array(
    'title' => 'Tax reporting',
    'description' => 'Tax reporting.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'commerce_reports_tax_settings',
    ),
    'access arguments' => array(
      'configure store',
    ),
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}