You are here

function product_price_alterer_field_disable in Ubercart Discounts (Alternative) 7.2

Same name and namespace in other branches
  1. 6.2 product_price_alterer_field/product_price_alterer_field.install \product_price_alterer_field_disable()

Implementation of hook_disable().

Notify content module when this module is disabled.

File

product_price_alterer_field/product_price_alterer_field.install, line 39
Install hooks for product_price_alterer_field module.

Code

function product_price_alterer_field_disable() {
  drupal_load("module", "content");
  content_notify("disable", "product_price_alterer");
}