You are here

function uc_taxes_help in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_taxes/uc_taxes.module \uc_taxes_help()

Implements hook_help().

File

uc_taxes/uc_taxes.module, line 19

Code

function uc_taxes_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/store/settings/taxes':
      return t('Add tax rates through this page and then use the <a href="!url">conditional actions interface</a> to add conditions to the taxes that limit which orders they are applied to. Especially important are the geographic area conditions for the delivery address.  Use the conditions link to jump to a particular tax rate conditions configuration page.', array(
        '!url' => url(CA_UI_PATH),
      ));
  }
  return $output;
}