You are here

function hook_commerce_tax_rate_delete in Commerce Core 7

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

Parameters

$tax_rate: The tax rate info array.

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

See also

commerce_tax_ui_tax_rate_delete()

1 invocation of hook_commerce_tax_rate_delete()
commerce_tax_ui_tax_rate_delete in modules/tax/commerce_tax_ui.module
Deletes a tax rate.

File

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

Code

function hook_commerce_tax_rate_delete($tax_rate, $skip_reset) {

  // No example.
}