function uc_recurring_views_api in UC Recurring Payments and Subscriptions 6.2
Same name and namespace in other branches
- 7.2 uc_recurring.module \uc_recurring_views_api()
Implements hook_views_api().
File
- ./
uc_recurring.module, line 1234 - Allows you to add a recurring fee to a product/SKU to handle subscription type services.
Code
function uc_recurring_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'uc_recurring') . '/views',
);
}