You are here

function hook_commerce_tax_rate_insert in Commerce Core 7

Allows modules to react to the creation of a new tax rate via the UI module.

Parameters

$tax_rate: The tax rate info array.

$skip_reset: Boolean indicating whether or not this insert will trigger a cache reset and menu rebuild.

See also

commerce_tax_ui_tax_rate_save()

1 invocation of hook_commerce_tax_rate_insert()
commerce_tax_ui_tax_rate_save in modules/tax/commerce_tax_ui.module
Saves a tax rate.

File

modules/tax/commerce_tax.api.php, line 177
Documents hooks provided by the Tax module.

Code

function hook_commerce_tax_rate_insert($tax_rate, $skip_reset) {

  // No example.
}