You are here

function commerce_purchase_order_views_api in Commerce Purchase Order 7

Implements hook_views_api().

File

./commerce_purchase_order.module, line 229
Provides an example payment method for Drupal Commerce for testing and development.

Code

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