You are here

function commerce_shipping_ctools_plugin_type in Commerce Shipping 7

Implements hook_ctools_plugin_type().

File

./commerce_shipping.module, line 40
Defines the shipping system and checkout integration.

Code

function commerce_shipping_ctools_plugin_type() {
  return array(
    // Quote plugins are used for calculating shipping costs.
    'quotes' => array(
      'child plugins' => FALSE,
      'classes' => array(
        'handler',
      ),
    ),
  );
}