function uc_taxes_uc_line_item in Ubercart 7.3
Implements hook_uc_line_item().
File
- uc_taxes/
uc_taxes.module, line 149 - Ubercart Taxes module.
Code
function uc_taxes_uc_line_item() {
$items['tax'] = array(
'title' => t('Tax'),
'weight' => 9,
'stored' => TRUE,
'default' => FALSE,
'calculated' => TRUE,
'display_only' => FALSE,
);
$items['tax_display'] = array(
'title' => t('Tax'),
'callback' => 'uc_line_item_tax_display',
'weight' => 5,
'stored' => FALSE,
'calculated' => TRUE,
'display_only' => TRUE,
);
$items['tax_subtotal'] = array(
'title' => t('Subtotal excluding taxes'),
'callback' => 'uc_line_item_tax_subtotal',
'weight' => 7,
'stored' => FALSE,
'calculated' => FALSE,
'display_only' => TRUE,
);
return $items;
}