function commerce_shipping_views_api in Commerce Shipping 7.2
Same name and namespace in other branches
- 7 commerce_shipping.module \commerce_shipping_views_api()
Implements hook_views_api().
File
- ./
commerce_shipping.module, line 50 - Defines a system for calculating shipping costs associated with an order.
Code
function commerce_shipping_views_api() {
return array(
'api' => 3,
'path' => drupal_get_path('module', 'commerce_shipping') . '/includes/views',
);
}