function commerce_customer_views_api in Commerce Core 7
Implements hook_views_api().
File
- modules/customer/ commerce_customer.module, line 350 
- Defines the customer profile entity and API functions to manage customers and interact with them.
Code
function commerce_customer_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'commerce_customer') . '/includes/views',
  );
}