function uc_taxes_entity_info in Ubercart 5
Implementation of hook_entity_info().
File
- uc_taxes/
uc_taxes_workflow.inc, line 16 - This file contains the Workflow-ng hooks and functions necessary to make the tax related entity, conditions, events, and actions work.
Code
function uc_taxes_entity_info() {
$entities['tax_line_item'] = array(
'#save' => 'uc_taxes_save_line_item',
);
return $entities;
}