function pay_views_api in Pay 6
Same name and namespace in other branches
- 7 pay.module \pay_views_api()
Implementation of hook_views_api().
File
- ./
pay.module, line 128 - Pay module allows for accepting payments using pluggable payment backends.
Code
function pay_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'pay') . '/includes/views',
);
}