You are here

function uc_tax_report_menu in Ubercart 5

Same name and namespace in other branches
  1. 6.2 uc_tax_report/uc_tax_report.module \uc_tax_report_menu()
  2. 7.3 uc_tax_report/uc_tax_report.module \uc_tax_report_menu()

Implementation of hook_menu().

File

uc_tax_report/uc_tax_report.module, line 12
Display a report on sales tax to store admin.

Code

function uc_tax_report_menu() {
  $items = array();
  $items[] = array(
    'path' => 'admin/store/reports/tax',
    'title' => t('Sales tax report'),
    'description' => t('View report on sales tax'),
    'callback' => 'uc_tax_report_report_page',
    'access' => user_access('view reports'),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}