You are here

function commerce_invoice_views_api in Commerce Invoice 7

Same name and namespace in other branches
  1. 7.2 commerce_invoice.module \commerce_invoice_views_api()

Implements hook_views_api().

File

./commerce_invoice.module, line 316
Generates the invoice and allows you to display an invoice id in views

Code

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