You are here

function hook_commerce_tax_rate_update in Commerce Core 7

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

Parameters

$tax_rate: The tax rate info array.

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

See also

commerce_tax_ui_tax_rate_save()

1 invocation of hook_commerce_tax_rate_update()
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 192
Documents hooks provided by the Tax module.

Code

function hook_commerce_tax_rate_update($tax_rate, $skip_reset) {

  // No example.
}