You are here

function hook_commerce_physical_order_shippable_alter in Commerce Physical Product 7

Allows modules to alter the shippability that has been determined for an order.

Parameters

&$shippable: Boolean indicating whether or not the given order has been determined to be shippable.

$order: The order object whose shippability is being determined.

See also

commerce_physical_order_shippable()

1 invocation of hook_commerce_physical_order_shippable_alter()
commerce_physical_order_shippable in ./commerce_physical.module
Determines whether or not an order should be considered shippable.

File

./commerce_physical.api.php, line 145
Hooks provided by the Commerce Physical Product module.

Code

function hook_commerce_physical_order_shippable_alter(&$shippable, $order) {

  // No example.
}