function stripe_customer_views_api in Stripe 7
Implements hook_views_api().
File
- stripe_customer/
stripe_customer.module, line 43 - Provides integration with Stripe and Drupal Users as Customers.
Code
function stripe_customer_views_api() {
return array(
'api' => 3,
'path' => drupal_get_path('module', 'stripe_customer') . '/views',
);
}