You are here

function uc_shipping_views_api in Ubercart 7.3

Implements hook_views_api().

File

shipping/uc_shipping/uc_shipping.module, line 771
Organizes ordered products into packages and sets them up for shipment. Shipping method modules may add functionality to generate shipping labels and tracking numbers.

Code

function uc_shipping_views_api() {
  return array(
    'api' => '2.0',
    'path' => drupal_get_path('module', 'uc_shipping') . '/views',
  );
}