You are here

function commerce_order_views_api in Commerce Core 7

Implements hook_views_api().

File

modules/order/commerce_order.module, line 306
Defines the core Commerce order entity and API functions to manage orders and interact with them.

Code

function commerce_order_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'commerce_order') . '/includes/views',
  );
}