You are here

function uc_taxes_ca_entity in Ubercart 6.2

Implements hook_ca_entity().

File

uc_taxes/uc_taxes.ca.inc, line 16
This file contains the Conditional Action hooks and functions necessary to make the tax related entity, conditions, events, and actions work.

Code

function uc_taxes_ca_entity() {
  $entities['tax'] = array(
    '#title' => t('Tax rule'),
    '#type' => 'object',
  );
  return $entities;
}