function commerce_tax_ui_help in Commerce Core 7
Implements hook_help().
File
- modules/
tax/ commerce_tax_ui.module, line 220 - Provides a UI for creating simple tax types and rates.
Code
function commerce_tax_ui_help($path, $arg) {
switch ($path) {
case 'admin/commerce/config/taxes':
case 'admin/commerce/config/taxes/rates':
return '<p>' . t('Define a tax rate for each tax you must collect from your customers. Tax rates are defined in decimal format and may be applied to line item via Rules. Default Rules components are defined for any tax rate specifying it and can be accessed using the appropriate operations link below.') . '</p>';
case 'admin/commerce/config/taxes/types':
return '<p>' . t('Tax types categorize tax rates and specify whether or not the calculated tax should be included in product prices on display. Default rules are defined for each tax type for applying its tax rates to line items. These can be accessed using the appropriate operations link below.') . '</p>';
}
}