You are here

function uc_taxes_help in Ubercart 5

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

File

uc_taxes/uc_taxes.module, line 18

Code

function uc_taxes_help($section) {
  switch ($section) {
    case 'admin/store/settings/taxes':
      return t('Add tax rates through this page and then use <a href="!url">Workflow-ng</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 Workflow-ng configuration page.', array(
        '!url' => _workflow_ng_ui_path(TRUE),
      ));
  }
}