You are here

function commerce_reports_tax_help in Commerce Reporting 7.4

Same name and namespace in other branches
  1. 7.3 modules/tax/commerce_reports_tax.module \commerce_reports_tax_help()

Implements hook_help().

File

modules/tax/commerce_reports_tax.module, line 11
Module file for Commerce Reports Tax.

Code

function commerce_reports_tax_help($path, $arg) {
  switch ($path) {
    case 'admin/commerce/reports/tax':
      return '<p>' . t('Here you can see reports about the tax gathered by your store.') . '</p>';
  }
}