You are here

function pay_views_api in Pay 7

Same name and namespace in other branches
  1. 6 pay.module \pay_views_api()

Implements hook_views_api().

File

./pay.module, line 172
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',
  );
}