You are here

function hook_commerce_product_type_update in Commerce Core 7

Allows modules to react to the update of a product type via Product UI.

Parameters

$product_type: The product type info array.

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

See also

commerce_product_ui_product_type_save()

1 invocation of hook_commerce_product_type_update()
commerce_product_ui_product_type_save in modules/product/commerce_product_ui.module
Saves a product type.

File

modules/product/commerce_product.api.php, line 88
Hooks provided by the Product module.

Code

function hook_commerce_product_type_update($product_type, $skip_reset) {

  // No example.
}