You are here

function commerce_product_pricing_hook_info in Commerce Core 7

Implements hook_hook_info().

File

modules/product_pricing/commerce_product_pricing.module, line 11
Enables Rules based product sell price calculation for dynamic product pricing.

Code

function commerce_product_pricing_hook_info() {
  $hooks = array(
    'commerce_product_valid_pre_calculation_rule' => array(
      'group' => 'commerce',
    ),
    'commerce_product_valid_pre_calculation_product' => array(
      'group' => 'commerce',
    ),
    'commerce_product_calculate_sell_price_line_item_alter' => array(
      'group' => 'commerce',
    ),
    'commerce_product_calculate_sell_price_line_item' => array(
      'group' => 'commerce',
    ),
  );
  return $hooks;
}